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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header-split {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a5c;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

.nav-right a:hover {
    color: #1a3a5c;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-subtitle {
    font-size: 20px;
    color: #495057;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #1a3a5c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0f2844;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1a3a5c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1a3a5c;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #1a3a5c;
    color: #ffffff;
}

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

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

.value-proposition {
    padding: 80px 0;
    background: #ffffff;
}

.value-proposition h2 {
    font-size: 36px;
    color: #1a3a5c;
    margin-bottom: 28px;
    font-weight: 700;
}

.value-proposition p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-section {
    display: flex;
    min-height: 700px;
}

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

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

.split-content-right {
    flex: 1;
    padding: 80px 6%;
    background: #f8f9fa;
}

.split-content-right h2 {
    font-size: 36px;
    color: #1a3a5c;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content-right > p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.service-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 22px;
    color: #1a3a5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    color: #1a3a5c;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 12px 24px;
    background: #1a3a5c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-section h2 {
    font-size: 38px;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.step {
    flex: 1;
}

.step-number {
    font-size: 48px;
    color: #e9ecef;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 22px;
    color: #1a3a5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

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

.split-content-left {
    flex: 1;
    padding: 80px 6%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left h2 {
    font-size: 36px;
    color: #1a3a5c;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content-left p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    font-size: 38px;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
}

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

.testimonial-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #1a3a5c;
    font-weight: 600;
    font-style: normal;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #2a4a6c 100%);
}

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

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

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

.form-intro p {
    font-size: 17px;
    color: #e9ecef;
    line-height: 1.7;
}

.main-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

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

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

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

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

.btn-submit:hover {
    background: #0f2844;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 2000;
    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;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.cookie-content a {
    color: #1a3a5c;
    font-weight: 600;
}

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

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

.btn-cookie-accept {
    background: #1a3a5c;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0f2844;
}

.btn-cookie-reject {
    background: #e9ecef;
    color: #495057;
}

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

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a3a5c;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #6c757d;
}

.page-content {
    padding: 80px 0;
    background: #ffffff;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section ul li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 22px;
    color: #1a3a5c;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    color: #2c3e50;
    font-size: 15px;
    margin-bottom: 6px;
}

.contact-detail span {
    color: #495057;
    font-size: 15px;
}

.thanks-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 60px 5%;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #1a3a5c;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-container .cta-primary {
    margin-top: 32px;
}

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

    .hero-visual,
    .split-visual-left,
    .split-visual-right {
        min-height: 400px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}