* {
    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: #2d3436;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.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: 24px;
    font-weight: 700;
    color: #2d3436;
}

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

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

.nav-links a:hover {
    color: #0984e3;
}

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

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #ffffff;
}

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

.hero-text-block {
    flex: 1;
}

.hero-text-block h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-image-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-block img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

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

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

.intro-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3436;
}

.intro-card p {
    color: #636e72;
    line-height: 1.7;
}

.services-cards {
    padding: 80px 20px;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.card-content {
    padding: 28px;
}

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

.card-content p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 18px;
}

.select-service-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #0770c4;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2d3436;
}

.form-header p {
    color: #636e72;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3436;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    padding: 14px 32px;
    background-color: #00b894;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.testimonials-section {
    padding: 80px 20px;
}

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

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

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #0984e3;
}

.testimonial-card p {
    font-style: italic;
    color: #2d3436;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #636e72;
}

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

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

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #b2bec3;
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #636e72;
    color: #b2bec3;
    font-size: 14px;
}

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

.cookie-banner.active {
    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-buttons {
    display: flex;
    gap: 12px;
}

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

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

.cookie-btn.accept {
    background-color: #00b894;
    color: #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d3436;
}

.about-text-block p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-block {
    flex: 1;
}

.about-image-block img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    color: #636e72;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d3436;
}

.team-intro {
    text-align: center;
    color: #636e72;
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3436;
}

.team-member .role {
    color: #0984e3;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: #636e72;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2d3436;
}

.cta-box p {
    color: #636e72;
    margin-bottom: 32px;
    font-size: 17px;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background-color: #0984e3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #0770c4;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-text p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-price-detail {
    font-size: 32px;
    font-weight: 700;
    color: #0984e3;
    margin: 24px 0 12px;
}

.service-note {
    font-size: 14px;
    color: #636e72;
    font-style: italic;
}

.service-image {
    flex: 1;
}

.service-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.guarantee-section {
    padding: 80px 20px;
    background-color: #e8f5e9;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 32px;
    color: #2d3436;
}

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

.guarantee-content p {
    color: #2d3436;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 80px 20px;
}

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

.contact-details-card {
    flex: 1;
}

.contact-details-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2d3436;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3436;
}

.contact-item p {
    color: #636e72;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2d3436;
}

.contact-image-card {
    flex: 1;
}

.contact-image-card img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.visit-info-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.visit-info-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2d3436;
}

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

.visit-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.visit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.visit-card p {
    color: #636e72;
    line-height: 1.7;
}

.map-placeholder-section {
    padding: 60px 20px;
}

.map-box {
    height: 300px;
    background-color: #dfe6e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    color: #636e72;
    font-size: 16px;
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.service-confirmation {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.selected-service-info,
.selected-price-info {
    font-size: 16px;
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #ffffff;
    color: #00b894;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.next-steps-section {
    padding: 80px 20px;
}

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

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

.step-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #0984e3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.step-card p {
    color: #636e72;
    line-height: 1.7;
}

.contact-reminder {
    padding: 60px 20px;
    background-color: #fff3cd;
}

.reminder-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.reminder-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #856404;
}

.reminder-box p {
    color: #856404;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-email {
    font-weight: 600;
}

.legal-page {
    padding: 60px 20px;
}

.legal-intro {
    text-align: center;
    color: #636e72;
    margin-bottom: 40px;
    font-size: 15px;
}

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

.legal-content h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #2d3436;
}

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

.legal-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3436;
}

.legal-content p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #0984e3;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content,
    .about-layout,
    .contact-layout,
    .intro-grid,
    .testimonials-grid,
    .footer-grid,
    .values-grid,
    .team-grid,
    .visit-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}