body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f3f4f6;
}

/* =============================================== */
/*                     HEADER                     */
/* =============================================== */
.hero-container {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    z-index: 10;
}

.hero-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: filter 0.5s ease;
    filter: brightness(0.6);
    /* Imagine mai întunecată inițial */
}

.hero-container:hover .hero-img {
    filter: brightness(1);
    /* Revine la luminozitate normală la hover */
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Overlay mai subtil */
    transition: opacity 0.5s ease;
    opacity: 1;
}

.hero-container:hover .hero-img-overlay {
    opacity: 0;
    /* Overlay dispare la hover */
}

.hero-container h1 {
    font-family: 'Montserrat', sans-serif;
    background-color: #fbbf24;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-container {
        height: 30vh;
    }

    .hero-img {
        filter: brightness(0.5);
        /* Mai întunecat pe mobile */
    }
}

/* Navbar buttons font */
nav a {
    font-family: 'Montserrat', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-item:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background-color: #fbbf24;
    color: #000;
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background-color: #f59e0b;
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-answer-content {
    padding: 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-image {
    border-radius: 0.5rem;
    margin: 2rem auto;
    display: block;
    max-width: 100%;
    height: auto;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d1d5db, transparent);
    margin: 30px 0;
}

.back-button {
    background-color: #e6ac1a;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.back-button:hover {
    background-color: #e6900b;
    transform: translateY(-2px);
    font-family: 'Montserrat', sans-serif;
}