:root {
    --primary-color: #8B4513;
    --secondary-color: #A0522D;
    --accent-color: #D2691E;
    --dark-brown: #654321;
    --light-brown: #DEB887;
    --cream: #F5DEB3;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #343A40;
    --text-dark: #2C1810;
    --text-light: #6C4A2B;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.advertisement-bar {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 120px 0;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--cream) !important;
}

.nav-cta-btn {
    background-color: var(--accent-color) !important;
    border: none !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, #815f46 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item svg {
    color: var(--accent-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.hero-cta {
    margin-top: 2rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    /*color: var(--primary-color);*/
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    /*color: var(--text-light);*/
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-section {
    padding: 100px 0;
}

.about-content {
    padding-left: 2rem;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.about-point svg {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.about-point h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-point p {
    color: var(--text-light);
    line-height: 1.6;
}

.specialists-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.specialist-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-5px);
}

.specialist-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent-color);
}

.specialist-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.specialist-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.specialist-credentials p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.specialist-bio {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.how-to-order-section {
    padding: 100px 0;
}

.step-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.questionnaire-preview {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.questionnaire-preview h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.questionnaire-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.topic-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-light);
}

.topic-item svg {
    color: var(--accent-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.reviews-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-color);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.review-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.review-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.faq-section {
    padding: 100px 0;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--light-gray);
    border-top: 3px solid var(--accent-color);
}

.disclaimer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.disclaimer-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer {
    background-color: var(--dark-gray) !important;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--light-brown);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.questionnaire-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-brown);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 1rem;
    z-index: 9998;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    margin-right: 2rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
}

.btn-link {
    color: var(--cream) !important;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .questionnaire-topics {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 60vh;
    }
    
    .navbar-nav .nav-item {
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .specialist-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .questionnaire-preview {
        padding: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

.w-100 {
    width: 100% !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.bg-dark {
    background-color: var(--dark-gray) !important;
}

.text-center {
    text-align: center !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded-4 {
    border-radius: 0.375rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.fw-bold {
    font-weight: 700 !important;
}

.ms-auto {
    margin-left: auto !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.privacy-section, .cookies-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-brown);
}

.privacy-section:last-child, .cookies-section:last-child {
    border-bottom: none;
}

.privacy-section h2, .cookies-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.privacy-section h3, .cookies-section h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section h4, .cookies-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.privacy-section ul, .cookies-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-section li, .cookies-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-details {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.browser-instructions {
    background-color: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.browser-instructions p {
    color: var(--text-light);
    font-family: monospace;
    background-color: var(--white);
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.cookie-consent-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.privacy-header, .cookies-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0 80px;
}

.main-content {
    padding-top: 80px;
}

.thankyou-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding-top: 120px;
}

.thankyou-card {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
}

.success-icon {
    color: var(--success);
    margin-bottom: 2rem;
}

.success-icon svg {
    width: 80px;
    height: 80px;
}

.thankyou-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 1rem;
}

.thankyou-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.thankyou-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.step-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-box .contact-details {
    background: var(--white);
    margin-top: 1rem;
}

.confirmation-details {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.confirmation-details h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.confirmation-note {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.action-buttons {
    margin-top: 3rem;
}

.additional-info {
    padding: 80px 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.info-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thankyou-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-section, .cookies-section {
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-details, .browser-instructions {
        padding: 1rem;
    }
    
    .info-card {
        margin-bottom: 1.5rem;
    }
}

.specialists-header, .how-to-order-header, .reviews-header {
    background: linear-gradient(135deg, #815f46, var(--secondary-color));
    color: var(--white);
    padding: 120px 0 80px;
}

.specialist-card-detailed {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.specialist-photo-container {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.specialist-photo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-color);
}

.specialist-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.specialist-info-detailed h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.specialist-info-detailed .specialist-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.specialist-credentials, .specialist-experience, .specialist-achievements, .specialist-approach {
    margin-bottom: 2rem;
}

.specialist-credentials h3, .specialist-experience h3, .specialist-achievements h3, .specialist-approach h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.specialist-credentials ul, .specialist-experience ul {
    list-style: none;
    padding: 0;
}

.specialist-credentials li, .specialist-experience li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.specialist-credentials li:before, .specialist-experience li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.step-card-detailed {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-number-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.step-card-detailed h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-features {
    text-align: left;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-item svg {
    color: var(--accent-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.team-philosophy {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.team-philosophy h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
}

.philosophy-point svg {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.philosophy-point h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.consultation-cta {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.consultation-cta h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.questionnaire-sections {
    margin: 2rem 0;
}

.section-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-group h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-group ul {
    list-style: none;
    padding: 0;
}

.section-group li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.section-group li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.privacy-assurance {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.privacy-assurance h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-duration {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.program-ideal {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-card-detailed {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.review-card-detailed.featured-review {
    border: 2px solid var(--accent-color);
}

.review-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.review-photo-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    margin-right: 2rem;
}

.review-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.review-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.review-condition {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-content-detailed blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.review-results {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.review-results h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-results ul {
    list-style: none;
    padding: 0;
}

.review-results li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.review-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.review-timeline {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.review-card-standard {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card-standard:hover {
    transform: translateY(-5px);
}

.statistics-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
}

.results-disclaimer {
    border-top: 3px solid var(--accent-color);
}

.results-disclaimer h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.final-cta, .cta-section {
    background: var(--cream);
}

.cta-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .specialist-card-detailed, .step-card-detailed, .review-card-detailed {
        padding: 2rem;
    }
    
    .specialist-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .step-number-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
    }
    
    .review-photo-large {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
