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

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

header {
    background: #1a4d7a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6a9f 100%);
    color: #ffffff;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #3a5f7d;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffd700;
    color: #1a4d7a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e8f1f8;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a4d7a;
    font-weight: 700;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #1a4d7a;
}

.service-card.selected {
    border-color: #ffd700;
    background: #fffef5;
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8f1f8;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #5a6f8a;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 5px;
}

.price-note {
    font-size: 13px;
    color: #7a8a9a;
}

.section-header {
    text-align: center;
    padding: 80px 5% 50px;
    max-width: 900px;
    margin: 0 auto;
}

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

.section-header p {
    font-size: 18px;
    color: #5a6f8a;
    line-height: 1.7;
}

.form-container {
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a4d7a;
    text-align: center;
}

.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 16px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.testimonials {
    background: #f8f9fa;
    padding: 80px 5%;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.testimonial-author {
    font-weight: 600;
    color: #1a4d7a;
    font-style: normal;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #1a4d7a;
    color: #ffffff;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffd700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #e8f1f8;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

footer {
    background: #1a2837;
    color: #b8c5d6;
    padding: 60px 5% 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3e52;
    font-size: 14px;
}

.disclaimer {
    background: #f8f9fa;
    padding: 40px 5%;
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2837;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    margin-bottom: 10px;
    font-size: 15px;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.cookie-button {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background: #ffd700;
    color: #1a4d7a;
}

.cookie-accept:hover {
    background: #ffed4e;
}

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #5a6f8a;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    color: #1a4d7a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5f7a;
}

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

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5f7a;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a4d7a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        box-shadow: 0 10px 27px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .split-hero,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-content {
        padding: 50px 30px;
    }

    .hero-right,
    .split-image {
        min-height: 350px;
    }

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

    .section-header h2,
    .split-content h2 {
        font-size: 32px;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .cookie-banner.show {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .form-container {
        padding: 30px 20px;
    }
}
