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

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #34495e;
}

.hero-card {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

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

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 36px;
}

.hero-image {
    flex: 1;
    background: #e8f4f8;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
}

.intro-cards {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.card-intro {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-intro h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.card-intro p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.services-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

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

.card-image {
    width: 100%;
    height: 240px;
    background: #e8f4f8;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-body {
    padding: 32px;
}

.card-body h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.card-body p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2980b9;
}

.form-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.form-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.form-selected-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #34495e;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

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

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

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px 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;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

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

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

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

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

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

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

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

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

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

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

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