* {
    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: #f3f4f6;
    color: #4b5563;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e5e7eb;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1f2937;
}

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

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

.intro-statement {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    display: flex;
    gap: 80px;
}

.statement-left {
    flex: 1;
}

.statement-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
}

.statement-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.statement-right p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.services-showcase {
    background: #f9fafb;
    padding: 100px 0;
}

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

.section-header-centered h2 {
    font-size: 38px;
    color: #111827;
    font-weight: 700;
}

.service-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    background: #ffffff;
}

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

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-pricing {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.select-service {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1f2937;
}

.form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container {
    background: #f9fafb;
    padding: 60px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-markers {
    background: #111827;
    padding: 80px 40px;
}

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

.trust-content h3 {
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
}

.main-footer {
    background: #f9fafb;
    padding: 60px 40px 40px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: #111827;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #111827;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    padding: 24px;
    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: 32px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

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

    .intro-statement {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .intro-statement,
    .service-info,
    .form-container {
        padding: 40px 24px;
    }
}
