* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

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

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #80868b;
    padding: 4px 8px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a73e8;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.services-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    height: 200px;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 20px;
    color: #4a5568;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0 24px 20px;
}

.select-service-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-inline {
    text-align: center;
    padding: 60px 0 0;
}

.cta-inline p {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a202c;
}

.testimonial-section {
    padding: 100px 0;
    background-color: #1a202c;
    color: #ffffff;
}

.testimonial {
    text-align: center;
    font-size: 24px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 24px;
}

.testimonial cite {
    font-style: normal;
    font-size: 18px;
    color: #a0aec0;
}

.methodology-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.methodology-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.methodology-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.method-item {
    flex: 1;
    min-width: 250px;
}

.method-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a73e8;
}

.method-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a202c;
}

.contact-form-section > div > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.form-group input[readonly] {
    background-color: #f7fafc;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #718096;
    text-align: center;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

.footer-col ul li a:hover {
    color: #1a73e8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #bdc3c7;
    font-size: 14px;
}

.page-hero {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a202c;
}

.lead {
    font-size: 22px;
    color: #4a5568;
}

.about-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.philosophy-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
}

.philosophy-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.audience-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.audience-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.approach-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
}

.approach-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-about {
    padding: 100px 0;
    background-color: #1a202c;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #e2e8f0;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-detail-content h4 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
    overflow: hidden;
}

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

.service-pricing {
    margin: 28px 0;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #1a73e8;
}

.price-note {
    font-size: 16px;
    color: #718096;
    margin-left: 12px;
}

.service-inquiry {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.service-inquiry h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-inquiry p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a5568;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a202c;
}

.contact-section {
    padding: 60px 0 100px;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a73e8;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-form-wrapper p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.additional-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 240px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a73e8;
}

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

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #1a73e8;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.next-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.next-step-link {
    padding: 12px 24px;
    background-color: #ffffff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #1a73e8;
    font-weight: 600;
    transition: all 0.3s;
}

.next-step-link:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.thanks-note {
    margin-top: 60px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
}

.thanks-note strong {
    color: #1a202c;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #1a202c;
}

.legal-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #1a202c;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .insight-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-grid-split,
    .methodology-split,
    .audience-grid,
    .process-steps {
        flex-direction: column;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .intro-section h2,
    .services-preview h2,
    .methodology-section h2,
    .team-section h2,
    .approach-section h2,
    .cta-about h2,
    .service-inquiry h2,
    .additional-info h2 {
        font-size: 32px;
    }

    .cookies-table {
        font-size: 13px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}