* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

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

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

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

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #4a5568;
    max-width: 550px;
}

.cta-hero {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #134070;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.intro-split {
    display: flex;
    min-height: 550px;
}

.intro-image {
    flex: 1;
    background-color: #dce3e9;
}

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

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

.intro-text h2 {
    font-size: 38px;
    color: #1a5490;
    margin-bottom: 28px;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.services-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.services-text {
    flex: 0 0 35%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a5490;
    color: #ffffff;
}

.services-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.services-text p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-services {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5490;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-services:hover {
    background-color: #f0f4f8;
}

.services-cards {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

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

.form-image {
    flex: 1;
    background-color: #d5dce3;
}

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

.form-container {
    flex: 1;
    padding: 70px 60px;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-container > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
}

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

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

.trust-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.trust-image {
    flex: 1;
    background-color: #e2e7ec;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-split,
    .form-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-right,
    .intro-image,
    .form-image,
    .trust-image {
        min-height: 400px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 45%;
    }

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

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

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

    .intro-text h2,
    .form-container h2,
    .trust-text h2 {
        font-size: 30px;
    }

    .services-text h2 {
        font-size: 32px;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}