* {
    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: #333;
    background: #f9f9f9;
}

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

.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
}

.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 680px;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2c5f7c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #234a5f;
}

.intro {
    padding: 70px 0;
    background: #fff;
}

.intro-content {
    max-width: 820px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c5f7c;
    text-align: center;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 70px 0;
    background: #f4f6f8;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(33.333% - 16px);
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background: #2c5f7c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #234a5f;
}

.form-section {
    padding: 70px 0;
    background: #fff;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2c5f7c;
    text-align: center;
}

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

.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: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #2c5f7c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234a5f;
}

.trust-section {
    padding: 70px 0;
    background: #f4f6f8;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(33.333% - 16px);
    min-width: 280px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.disclaimer {
    padding: 50px 0;
    background: #fff8e1;
}

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

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 20px;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #333;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #2c5f7c;
    color: #fff;
}

.btn-accept:hover {
    background: #234a5f;
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

.btn-reject:hover {
    background: #d0d0d0;
}

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 36px;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-box .btn-primary {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .ad-notice {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
        text-align: center;
    }

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

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

    .service-card {
        width: 100%;
    }

    .benefit-card {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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