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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    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 {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #6c7a7b;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #27ae60;
}

.ad-notice {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.hero-section {
    margin-top: -1px;
}

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

.hero-overlay {
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 22px;
    max-width: 600px;
}

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

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.section-title {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 320px;
    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);
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.select-service {
    width: 100%;
    padding: 12px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #229954;
}

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

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

.form-wrapper h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 36px;
    font-size: 16px;
}

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

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

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

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

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

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

.benefits-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

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

.benefit-card {
    background-color: #34495e;
    padding: 36px 28px;
    border-radius: 8px;
    width: calc(33.333% - 24px);
    min-width: 280px;
    text-align: center;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column a:hover {
    color: #27ae60;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    max-width: 900px;
    margin: 16px auto 0;
    line-height: 1.6;
}

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

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 38px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 14px;
    line-height: 1.7;
}

.thanks-content a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-content a:hover {
    background-color: #229954;
}

.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.content-wrapper h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.content-wrapper h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 36px;
    margin-bottom: 16px;
}

.content-wrapper h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-wrapper p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-wrapper li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-wrapper a {
    color: #27ae60;
    text-decoration: underline;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #2c3e50;
}

.contact-item span {
    color: #5a6c7d;
}

.about-hero {
    background-color: #27ae60;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

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

.about-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.services-list {
    background-color: #ffffff;
    padding: 60px 0;
}

.service-detail {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.service-detail h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 12px;
}

.service-detail p {
    color: #5a6c7d;
    font-size: 16px;
    margin-bottom: 16px;
}

.service-detail .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

@media (max-width: 768px) {
    .navigation {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .service-card {
        width: 100%;
    }

    .benefit-card {
        width: 100%;
    }

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

    .intro-card {
        padding: 32px 24px;
    }

    .content-wrapper {
        padding: 32px 24px;
    }
}