* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #f8fafc;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #64748b;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.green-text {
    color: #12b76a;
}

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a, .dropdown-toggle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    padding: 8px 12px;
    border-radius: 6px;
}

.menu a:hover, .menu a.active, .dropdown:hover .dropdown-toggle {
    color: #12b76a;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.nav-arrow {
    font-size: 0.75rem;
    margin-left: 3px;
}

.dropdown-menu,
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%; 
    transform: translateX(-50%);
    width: max-content; 
    min-width: 200px;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    display: none; 
    z-index: 999;
    border: 1px solid #f1f5f9;
}

.dropdown-menu a,
.dropdown-content a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap; 
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
}

.dropdown-menu a:hover,
.dropdown-content a:hover {
    background-color: #f4f8f6;
    color: #12b76a;
}

.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
}

.service-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 60px 5%;
    text-align: center;
}

.service-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content-section {
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.service-grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.service-left-column {
    position: sticky;
    top: 90px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-right-column h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0f172a;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-right-column h3 {
    font-family: 'Montserrat', sans-serif;
    color: #12b76a;
    font-size: 1.25rem;
    margin: 25px 0 10px 0;
}

.service-right-column p {
    color: #475569;
    margin-bottom: 15px;
}

.benefits-list, 
.contraindications-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.benefits-list li, 
.contraindications-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background-color: #dcfce7;
    color: #12b76a;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contraindications-block {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin-top: 30px;
}

.contraindications-title {
    color: #dc2626 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0 !important;
}

.contraindications-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background-color: #fee2e2;
    color: #dc2626;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fca5a5;
}

.prices-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
}

.prices-container h1 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #0f172a;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.category-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #12b76a;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    background: #f8fafc;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #12b76a;
    margin-bottom: 10px;
}

.card .tag {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
}

.loyalty-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.loyalty-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #15803d;
    margin-bottom: 10px;
}

.loyalty-box p {
    color: #374151;
}

.main-footer {
    background-color: #0f172a !important;
    color: #94a3b8;
    padding: 40px 5% 25px 5%;
    margin-top: auto;
    width: 100%;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    text-align: center;
}

.footer-logo .logo-small {
    color: #94a3b8;
}

.footer-logo .logo-main {
    color: #ffffff;
}

.footer-legal-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 25px 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    gap: 20px;
}

.legal-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.legal-col a {
    color: #cbd5e1 !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-col a:hover {
    color: #12b76a !important;
}

.footer-anpc-img {
    max-width: 250px;
    height: auto;
    border-radius: 6px;
}

.footer-bottom-info {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-copyright {
    margin-bottom: 5px;
}

.author-name {
    color: #cbd5e1;
    font-weight: 600;
}

.about-pillars-section {
    background-color: #ffffff;
    padding: 60px 5%;
    border-top: 1px solid #f1f5f9;
}

.pillars-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pillar-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-cta-box {
    background-color: #12b76a;
    color: #ffffff;
    padding: 20px 15px; 
    border-radius: 10px;
    margin-top: 20px; 
    text-align: center;
    box-shadow: 0 4px 15px rgba(18, 183, 106, 0.15); 
}

.service-cta-box h4 {
    color: #ffffff;
    font-size: 1.15rem; 
    margin-top: 0;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.service-cta-box p {
    font-size: 0.85rem; 
    margin-bottom: 15px;
    line-height: 1.4;
    opacity: 0.95;
}

.service-cta-box .btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #12b76a;
    padding: 10px 15px; 
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem; 
    font-family: 'Montserrat', sans-serif;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%; 
    box-sizing: border-box; 
}

.service-cta-box .btn-cta:hover {
    background-color: #f4f8f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-hero-section {
    background-color: #f4f8f6;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e2ece8;
}

.about-tag {
    background-color: #e8f7f0;
    color: #12b76a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #113f30;
    margin: 15px 0 10px 0;
}

.about-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #666666;
    font-size: 1rem;
}

.about-story-section {
    padding: 60px 20px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.story-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #113f30;
    margin-top: 35px;
    margin-bottom: 12px;
}

.story-block p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
    .service-grid-container {
        grid-template-columns: 1fr;
    }

    .service-left-column {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f8fafc;
        border-radius: 6px;
        margin-top: 5px;
    }

    .main-footer {
        padding: 30px 20px 20px 20px !important;
        background-color: #0f172a !important;
    }

    .footer-legal-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
    }

    .legal-col {
        text-align: center;
        align-items: center;
    }

    .footer-anpc-img {
        max-width: 220px;
        margin: 0 auto;
    }

    .service-main-title {
        font-size: 1.8rem;
    }

    .prices-container h1 {
        font-size: 1.8rem;
    }

    /* Corectură suplimentară de lățime/padding pe telefon pentru cardurile din footer */
    .footer-container .card, 
    .footer-container [class*="date"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
}

.author-glow {
    font-weight: 700;
    background: linear-gradient(90deg, #12b76a, #38ef7d, #ffffff, #12b76a);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    transition: all 0.3s ease;
    animation: shineName 4s linear infinite;
    cursor: pointer;
}

.author-glow:hover {
    transform: translateY(-1px) scale(1.05);
    text-shadow: 0 0 10px rgba(18, 183, 106, 0.6);
}

@keyframes shineName {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

#recaptcha-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.4s ease;
    font-family: 'Montserrat', sans-serif;
}

.recaptcha-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;          
    max-width: 320px;   
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.recaptcha-header h3 {
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.recaptcha-header p {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.recaptcha-box:hover {
    border-color: #12b76a;
    background: #ffffff;
}

.recaptcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #94a3b8;
    border-radius: 4px;
    background: #ffffff;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.recaptcha-spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid #f1f5f9;
    border-top: 3px solid #12b76a;
    border-radius: 50%;
    animation: spinRecaptcha 0.8s linear infinite;
    margin-right: 12px;
}

.recaptcha-checkmark {
    display: none;
    width: 24px;
    height: 24px;
    background: #12b76a;
    color: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 12px;
    animation: popCheck 0.3s ease;
}

.recaptcha-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.recaptcha-footer {
    margin-top: 18px;
    font-size: 0.72rem;
    color: #94a3b8;
}

.recaptcha-box.verified {
    border-color: #12b76a;
    background: #f0fdf4;
    cursor: default;
}

@keyframes spinRecaptcha {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes popCheck {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999998;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: opacity 0.4s ease;
}

.cookie-card {
    background: #1c2541;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.cookie-header h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    color: #ffffff;
}

.cookie-header p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 19, 43, 0.6);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-info strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
}

.cookie-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #334155;
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider { background-color: #12b76a; }
input:checked + .slider:before { transform: translateX(20px); }

.switch.disabled .slider { opacity: 0.6; cursor: not-allowed; }

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-outline { background: transparent; color: #cbd5e1; border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.btn-primary { background: #1c2541; color: #00d2ff; border: 1px solid #00d2ff; }
.btn-primary:hover { background: #00d2ff; color: #0b132b; }

.btn-accent { background: #12b76a; color: #ffffff; }
.btn-accent:hover { background: #0e9355; }