* {
    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: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #1a5490;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #134070;
}

.hero-right {
    flex: 1;
    background: #e8f0f7;
    border-radius: 12px;
    overflow: hidden;
}

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

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.value-image {
    flex: 1;
    background: #f4f7fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
    line-height: 1.3;
}

.value-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-grid > h2 {
    font-size: 42px;
    color: #1a5490;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-split {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 50px;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 18px;
}

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

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

.select-service {
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.select-service:hover {
    background: #134070;
}

.service-visual {
    flex: 1;
    background: #e8f0f7;
    border-radius: 8px;
    overflow: hidden;
    max-height: 350px;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 38px;
    color: #1a5490;
    margin-bottom: 20px;
}

.form-content > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    background: #ffffff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #134070;
}

.form-visual {
    flex: 1;
    background: #e8f0f7;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
    background: #f4f7fa;
    border-radius: 12px;
    padding: 70px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 34px;
    color: #1a5490;
    margin-bottom: 25px;
}

.trust-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    max-height: 400px;
}

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

.main-footer {
    background: #1a2332;
    color: #ffffff;
    margin-top: 120px;
    padding: 60px 40px 30px;
}

.footer-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 50px;
    gap: 100px;
}

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #b8c4d4;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 14px;
    color: #b8c4d4;
    line-height: 1.7;
}

.disclaimer strong {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8a96a8;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
}

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

.cookie-content a {
    color: #5dade2;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #134070;
}

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

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

.contact-page {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    background: #f8fafc;
    padding: 50px;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 32px;
    color: #1a5490;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #e8f0f7;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-hero h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 25px;
}

.about-split {
    display: flex;
    gap: 70px;
    margin: 80px auto;
    max-width: 1400px;
    padding: 0 40px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 34px;
    color: #1a5490;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: #e8f0f7;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

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

.services-page {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.services-page h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 20px;
}

.services-page > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-page .selected-service {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    font-size: 20px;
    color: #1a5490;
    font-weight: 600;
}

.thanks-page a {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 30px;
    transition: background 0.3s;
}

.thanks-page a:hover {
    background: #134070;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .service-card-split,
    .form-section-split,
    .trust-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 20px;
    }

    .hero-left h1,
    .about-hero h1,
    .services-page h1,
    .thanks-page h1 {
        font-size: 36px;
    }
}