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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #5f6368;
    padding: 0.25rem 0.75rem;
    background-color: #f1f3f4;
    border-radius: 4px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #1a73e8;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #e8eaf0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    border: 2px solid #1a73e8;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f1f3f4;
    transform: translateY(-2px);
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    color: #ffffff;
}

.insights-container h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.insights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.insight-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8eaf0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a73e8;
    padding: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1557b0;
}

.testimonials-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a73e8;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a73e8;
    font-style: normal;
}

.cta-section {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1557b0;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e1e8ed;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #1557b0;
}

.btn-cookie.reject {
    background-color: #5f6368;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #3c4043;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a73e8;
    font-weight: 600;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-split {
    display: flex;
}

.service-detail-card.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #f0f2f5;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.info-container p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.info-container ul {
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.info-container ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: #34a853;
    color: #ffffff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-confirmation p {
    margin: 0;
    color: #2e7d32;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-container ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1557b0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e1e8ed;
}

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

.cookie-table td {
    font-size: 0.95rem;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .split-image,
    .service-detail-image {
        min-height: 400px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .services-section h2,
    .testimonials-section h2,
    .values-section h2,
    .process-section h2 {
        font-size: 2rem;
    }

    .insights-grid,
    .services-grid,
    .values-grid,
    .process-steps {
        gap: 1.5rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}