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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #2c5f8d;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    background: #f9f9f9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    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: #7ab8ea;
}

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

.btn-primary, .btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #2c5f8d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #234a6d;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
    background: #f8fafb;
}

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

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #234a6d;
    transform: translateY(-2px);
}

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

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

.insight-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-left {
    flex: 1;
    background: #e8f1f7;
}

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

.insight-right {
    flex: 1;
}

.insight-right h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.citation {
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.problem-amplification {
    padding: 5rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.problem-amplification h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-amplification p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.solution-reveal {
    padding: 6rem 5%;
    background: #f4f7f9;
}

.split-reverse {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

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

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

.split-image {
    flex: 1;
    background: #d4e4ee;
}

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

.services-showcase {
    padding: 6rem 5%;
    background: #ffffff;
}

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

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

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #e0e0e0;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f8d;
    margin: 1rem 1.5rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #234a6d;
}

.testimonials-inline {
    padding: 5rem 5%;
    background: #e8f1f7;
}

.testimonial-item {
    margin-bottom: 3rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

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

.form-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #2c5f8d;
}

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

.btn-submit:hover {
    background: #234a6d;
}

.disclaimer-section {
    padding: 3rem 5%;
    background: #f4f4f4;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
}

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

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

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

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

.references li {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-box {
    max-width: 700px;
    text-align: center;
    background: #f8fafb;
    padding: 4rem 3rem;
    border-radius: 12px;
}

.thanks-box h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5f8d;
}

.thanks-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-service {
    font-weight: 700;
    color: #2c5f8d;
}

.thanks-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c5f8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-back:hover {
    background: #234a6d;
}

.page-header {
    background: #2c5f8d;
    color: #ffffff;
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444;
}

.contact-info-block {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-info-block p {
    margin: 0.5rem 0;
}

.info-label {
    font-weight: 600;
    color: #2c5f8d;
}

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

    .hero-left {
        padding: 3rem 5%;
    }

    .hero-right {
        min-height: 400px;
    }

    .insight-wrapper,
    .split-reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

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

    .footer-col {
        flex: 0 0 100%;
    }
}
