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

.ad-disclosure {
    background: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 500;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    max-width: 560px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0052a3;
}

.insight-split {
    display: flex;
    min-height: 70vh;
}

.insight-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.problem-section {
    background: #f5f5f5;
    padding: 90px 40px;
    display: flex;
    justify-content: center;
}

.content-narrow {
    max-width: 720px;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #333;
    line-height: 1.7;
}

.services-reveal {
    padding: 100px 40px;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 35px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #333;
}

.testimonial-inline {
    background: #0066cc;
    padding: 80px 40px;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.form-section {
    padding: 100px 40px;
    background: #fafafa;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

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

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

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

.btn-submit:hover {
    background: #0052a3;
}

.trust-section {
    padding: 90px 40px;
    background: #ffffff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #444;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #333;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0052a3;
}

.btn-cookie-reject {
    background: #e0e0e0;
    color: #333;
}

.btn-cookie-reject:hover {
    background: #d0d0d0;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #fafafa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #0052a3;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-content,
    .insight-text {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .service-card {
        gap: 20px;
    }

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

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