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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    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: #2d3748;
}

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

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2d3748;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    border: 1px solid #cbd5e0;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #f7fafc;
}

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

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

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.btn-large {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #1a202c;
}

.insight-section,
.methodology-section,
.approach-section {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

.image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    line-height: 1.3;
}

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

.btn-outline {
    display: inline-block;
    border: 2px solid #2d3748;
    color: #2d3748;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #2d3748;
    color: #ffffff;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header-center p {
    font-size: 18px;
    color: #718096;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a202c;
}

.service-card p {
    padding: 0 24px 16px;
    color: #4a5568;
    font-size: 15px;
}

.service-price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
}

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

.select-service-btn:hover {
    background-color: #1a202c;
}

.select-service-btn.selected {
    background-color: #38a169;
}

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

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #cbd5e0;
}

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

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

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a202c;
}

.btn-submit:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.selected-service-display {
    margin-top: 16px;
    padding: 12px;
    background-color: #e6fffa;
    border-left: 4px solid #38b2ac;
    color: #234e52;
    font-weight: 600;
}

.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #a0aec0;
    max-width: 800px;
    margin: 16px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background-color: #38a169;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2f855a;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2d3748;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #38a169;
    margin-bottom: 24px;
}

.thanks-box p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-box a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-box a:hover {
    background-color: #1a202c;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #4a5568;
}

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

.legal-page ul {
    margin-bottom: 16px;
    margin-left: 24px;
    color: #4a5568;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-page {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

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

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    color: #4a5568;
    line-height: 1.6;
}

.about-hero {
    padding: 100px 0;
    background-color: #f7fafc;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a202c;
    text-align: center;
}

.about-hero .intro-text {
    font-size: 20px;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-section {
    padding: 80px 0;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.team-member p {
    color: #718096;
    font-size: 15px;
}

.services-list {
    padding: 80px 0;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-details p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-details .price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .contact-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }
}