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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

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

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

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

.nav-links a:hover {
    color: #2c7a7b;
}

.hero-section {
    width: 100%;
    background-color: #1a202c;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

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

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
}

.services-preview {
    background-color: #f7fafc;
    padding: 100px 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #2d3748;
    font-weight: 700;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.service-content p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c7a7b;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2c7a7b;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #234e52;
}

.features-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.features-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.features-wrapper.reverse {
    flex-direction: row-reverse;
}

.feature-block {
    flex: 1;
    padding: 20px;
}

.feature-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

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

.feature-image-block {
    flex: 1;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.form-section {
    background-color: #f7fafc;
    padding: 100px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d3748;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #718096;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

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

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

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

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

.main-footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 60px 20px 30px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #81e6d9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #2c7a7b;
    color: #ffffff;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
}

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

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-wrapper.reverse {
    flex-direction: row-reverse;
}

.about-text-block {
    flex: 1;
    padding: 20px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3748;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.about-image-block {
    flex: 1;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c7a7b;
}

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

.services-detail {
    background-color: #ffffff;
    padding: 80px 20px;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3748;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #4a5568;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: 700;
}

.service-price-box {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 18px;
    color: #4a5568;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c7a7b;
}

.additional-services {
    background-color: #f7fafc;
    padding: 80px 20px;
}

.additional-header {
    text-align: center;
    margin-bottom: 50px;
}

.additional-header h2 {
    font-size: 36px;
    color: #2d3748;
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.additional-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

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

.additional-item p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a7b;
}

.contact-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding: 20px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3748;
}

.contact-info-block > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c7a7b;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-detail .note {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-note {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    text-align: center;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    background-color: #ffffff;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #2c7a7b;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d3748;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2d3748;
}

.back-btn {
    display: inline-block;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #234e52;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d3748;
}

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

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

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

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

.legal-content a {
    color: #2c7a7b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234e52;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        margin-top: 15px;
        gap: 15px;
    }

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .features-wrapper,
    .features-wrapper.reverse,
    .about-wrapper,
    .about-wrapper.reverse,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .values-grid,
    .additional-grid {
        flex-direction: column;
    }
}