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

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

.ad-notice {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background: #1976d2;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 20px;
    background: #fff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
}

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

.split-image {
    flex: 1;
    background: #e8eaf0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-highlight {
    padding: 80px 20px;
    background: #fafbfc;
}

.services-highlight h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    padding: 20px 24px 12px;
    font-size: 24px;
    color: #1a2332;
}

.service-card p {
    padding: 0 24px 16px;
    color: #666;
    font-size: 15px;
}

.price {
    padding: 0 24px 16px;
    font-size: 22px;
    font-weight: bold;
    color: #2196f3;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: calc(100% - 48px);
}

.select-service:hover {
    background: #1976d2;
}

.process-section {
    padding: 80px 20px;
    background: #fff;
}

.benefits-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.benefits-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a2332;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    padding: 32px;
    background: #fff;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.benefit-item p {
    color: #666;
    font-size: 16px;
}

.cta-section {
    padding: 60px 20px;
    background: #1a2332;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #d0d0d0;
}

.contact-form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a2332;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 14px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1976d2;
}

.disclaimer-section {
    padding: 40px 20px;
    background: #f8f9fa;
    text-align: center;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: #64b5f6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2a3648;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-accept {
    background: #4caf50;
    color: #fff;
}

.cookie-accept:hover {
    background: #45a049;
}

.cookie-reject {
    background: #666;
    color: #fff;
}

.cookie-reject:hover {
    background: #555;
}

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

    .hero-content {
        padding: 40px 20px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .benefits-layout {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
}