* {
    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-notice {
    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 10px rgba(0,0,0,0.05);
    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;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
}

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

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

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

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

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

.cta-primary:hover {
    background: #14406b;
}

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

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

.intro-section {
    padding: 90px 40px;
    background: #ffffff;
}

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

.container-medium {
    max-width: 900px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.split-section-alt {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #f8f9fa;
}

.split-image-right {
    flex: 1;
    background-color: #d4dce5;
}

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

.split-content-left {
    flex: 1;
    padding: 60px;
}

.split-content-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.split-content-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-overview {
    padding: 100px 0;
    background: #ffffff;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0;
    width: calc(33.333% - 24px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8ecf1;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    margin: 0 25px 20px;
}

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 25px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.select-service:hover {
    background: #14406b;
}

.split-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #f8f9fa;
}

.split-content-right {
    flex: 1;
    padding: 60px;
}

.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.split-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-image-left {
    flex: 1;
    background-color: #d4dce5;
}

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

.testimonial-section {
    padding: 90px 40px;
    background: #ffffff;
}

.testimonial-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1a5490;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5490;
}

.form-section {
    padding: 90px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.selected-service-display {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a5490;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.contact-form .cta-primary {
    width: 100%;
    padding: 18px;
    font-size: 17px;
}

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

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

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a4f63;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
}

.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: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #64b5f6;
}

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

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

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

.cookie-btn.accept:hover {
    background: #14406b;
}

.cookie-btn.reject {
    background: #6c757d;
    color: #ffffff;
}

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

.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    color: #e0e0e0;
}

.content-section {
    padding: 80px 40px;
    background: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1a5490;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

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

.content-section ul {
    margin: 20px 0 20px 25px;
}

.content-section ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.service-detail-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    width: calc(50% - 20px);
    border-left: 4px solid #1a5490;
}

.service-detail-card h3 {
    margin-top: 0;
}

.contact-info-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-block {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a5490;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thanks-content {
    max-width: 700px;
}

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

.thanks-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 30px;
}

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

    .hero-left {
        padding: 60px 30px;
    }

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

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

    .split-content-left,
    .split-content-right {
        padding: 40px 30px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 450px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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