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

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    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;
    height: 70px;
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    transition: all 0.3s;
}

.hero-card {
    margin-top: 0;
}

.hero-overlay {
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.7);
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 780px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.feature-card p {
    color: #4a5568;
    font-size: 15px;
}

.services-preview {
    padding: 80px 0;
    background-color: #edf2f7;
}

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

.service-cards {
    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 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

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

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-info p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 15px;
}

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

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

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

.consultation-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a202c;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #edf2f7;
    cursor: not-allowed;
}

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

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

.why-choose {
    padding: 80px 0;
    background-color: #edf2f7;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.link-arrow {
    display: inline-block;
    margin-top: 10px;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2c5282;
}

.content-right {
    flex: 1;
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

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

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

.disclaimer-card {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #742a2a;
}

.disclaimer-card p {
    color: #742a2a;
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: #cbd5e0;
}

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

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

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

.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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px 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: 30px;
}

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

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

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

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

.thanks-card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.about-hero {
    padding: 80px 0;
    background-color: #edf2f7;
}

.about-hero h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-hero p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.about-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-hero {
    padding: 80px 0;
    background-color: #edf2f7;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-hero p {
    font-size: 18px;
    color: #4a5568;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d3748;
}

.info-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

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

.services-hero {
    padding: 80px 0;
    background-color: #edf2f7;
}

.services-hero h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-hero p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-detail .price {
    margin-bottom: 20px;
}

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

.service-detail ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-detail ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .service-cards {
        flex-direction: column;
    }

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

    .split-content {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }

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