* {
    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;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.main-nav a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.hero-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1rem;
}

.hero-visual {
    flex: 1;
    background-color: #e8eaf6;
    overflow: hidden;
}

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

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #455a64;
    line-height: 1.8;
}

.insight-split {
    display: flex;
    align-items: center;
    background-color: #fafafa;
}

.insight-image {
    flex: 1;
    background-color: #cfd8dc;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-content {
    flex: 1;
    padding: 4rem 3rem;
}

.insight-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.insight-highlight {
    background-color: #e3f2fd;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #2196f3;
}

.insight-highlight p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1565c0;
    margin: 0;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #263238;
    color: #ffffff;
}

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

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.process-card {
    flex: 1;
    background-color: #37474f;
    padding: 2rem;
    border-radius: 8px;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #b0bec5;
}

.process-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cfd8dc;
}

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #37474f;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #607d8b;
    font-weight: 600;
}

.reveal-split {
    display: flex;
    align-items: center;
}

.reveal-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.reveal-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.reveal-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.reveal-image {
    flex: 1;
    background-color: #e0e0e0;
}

.reveal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #546e7a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2196f3;
    margin: 1.5rem 1.5rem 1rem;
}

.cta-button {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #2196f3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1976d2;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #eceff1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #37474f;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.submit-button:hover {
    background-color: #1976d2;
}

.final-trust {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.final-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.final-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.main-footer {
    background-color: #263238;
    color: #b0bec5;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

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

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

.disclaimer-footer {
    font-size: 0.85rem;
    color: #78909c;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #37474f;
    text-align: center;
}

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

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2196f3;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1976d2;
}

.cookie-reject {
    background-color: #546e7a;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #455a64;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .hero-split,
    .insight-split,
    .reveal-split {
        flex-direction: column;
    }

    .hero-visual,
    .insight-image,
    .reveal-image {
        min-height: 400px;
    }

    .process-grid {
        flex-direction: column;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .story-container h2,
    .insight-content h2,
    .reveal-content h2,
    .services-container h2,
    .final-container h2 {
        font-size: 1.75rem;
    }

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