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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #38a169;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2f855a;
}

.cookie-reject {
    background: #718096;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #4a5568;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
}

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

.nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2b6cb0;
}

.ad-notice {
    font-size: 12px;
    color: #718096;
    padding: 4px 12px;
    background: #edf2f7;
    border-radius: 4px;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(26, 32, 44, 0.65);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 680px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background: #f7fafc;
}

.intro-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro-card h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 700;
}

.intro-card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

.services-section {
    padding: 100px 0;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-content p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 26px;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 24px;
    background: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #2c5282;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2b6cb0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

.benefits-section {
    padding: 100px 0;
    background: #f7fafc;
}

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-image {
    flex: 1;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #cbd5e0;
}

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

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 800;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 16px 0 16px 40px;
    font-size: 17px;
    color: #4a5568;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-size: 24px;
    font-weight: 700;
}

.form-section {
    padding: 100px 0;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper h2 {
    text-align: center;
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 800;
}

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

.contact-form {
    background: #f7fafc;
    padding: 50px;
    border-radius: 12px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2c5282;
}

.disclaimer-section {
    padding: 60px 0;
    background: #edf2f7;
}

.disclaimer {
    font-size: 14px;
    color: #718096;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #38a169;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-page {
    padding: 100px 0;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 40px;
    font-weight: 800;
}

.info-block {
    margin-bottom: 40px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 28px;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

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

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

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

    .benefits-image {
        height: 300px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

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