* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #0066cc;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-left p,
.split-right p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.split-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.section-alt {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-light {
    background: #ffffff;
    padding: 80px 0;
}

.section-dark {
    background: #2c3e50;
    padding: 80px 0;
    color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

.section-dark p {
    color: #ecf0f1;
}

.link-arrow {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow::after {
    content: '→';
}

.link-arrow:hover {
    text-decoration: underline;
}

.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.services-pricing {
    background: #ffffff;
    padding: 80px 0;
}

.pricing-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    gap: 30px;
}

.pricing-left {
    flex: 1;
}

.pricing-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.pricing-left p {
    color: #666;
    font-size: 16px;
}

.pricing-right {
    min-width: 150px;
    text-align: right;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.content-columns {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.column {
    flex: 1;
}

.column h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-sticky-section {
    background: #0066cc;
    padding: 50px 0;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 18px;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #ffffff;
    color: #2c3e50;
}

.btn-reject:hover {
    background: #ecf0f1;
}

.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 80px 0;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.lead {
    font-size: 20px;
    color: #ecf0f1;
}

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #0066cc;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.cta-content-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-center h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.service-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-features {
    margin: 25px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.service-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.custom-service-section {
    background: #0066cc;
    padding: 60px 0;
}

.custom-service-content {
    text-align: center;
    color: #ffffff;
}

.custom-service-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.custom-service-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ecf0f1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-note p {
    color: #856404;
    margin: 0;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service {
    color: #2e7d32;
    font-size: 16px;
    margin: 0;
}

.thanks-next {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    list-style-position: inside;
    color: #555;
    line-height: 2;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.8;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table th,
.legal-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.legal-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-table td {
    color: #555;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #888;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.full-width-content {
    max-width: 100%;
}

@media (max-width: 768px) {
    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .split-left h1 {
        font-size: 36px;
    }

    .split-left h2 {
        font-size: 28px;
    }

    .testimonials-grid,
    .footer-grid,
    .content-columns,
    .team-grid,
    .values-grid {
        flex-direction: column;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-right {
        text-align: left;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
}