/* =====================================================
   Falzsalu Page - Additional CSS
   Extends main.css with page-specific styles
   ===================================================== */

/* ========== Hero Section Override ========== */
.hero-falzsalu {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.5)), 
                url('/pics/falzsalu-hero.jpg') center/cover;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-white-box {
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--legnotre-yellow);
}

.hero-white-box h1 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-white-box h2 {
    color: var(--text-primary);
    opacity: 0.85;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* ========== Trust Bar Enhanced ========== */
.trust-bar-featured {
    background: var(--legnotre-red);
    color: white;
    padding: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-bar-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.trust-bar-featured .trust-items {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== CTA Section Enhanced ========== */
.cta-section-dual {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-phone {
    background: var(--legnotre-red);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-button-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-phone:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-phone:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 29, 35, 0.35);
    color: white;
}

.cta-button-email {
    background: var(--legnotre-yellow);
    color: var(--text-primary);
}

.cta-button-email:hover {
    background: #e6a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 189, 0, 0.4);
    color: var(--text-primary);
}

/* ========== Packages Section Enhanced ========== */
.packages-intro {
    text-align: center;
    margin-bottom: 60px;
}

.packages-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.packages-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--legnotre-red);
}

.packages-intro p {
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.8;
    margin-top: 25px;
}

/* Enhanced Package Cards */
.package-card-enhanced {
    position: relative;
    transition: all 0.3s ease;
}

.package-card-enhanced:hover {
    transform: translateY(-8px);
}

.package-card-enhanced:hover .offer-card {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Package Labels */
.package-size-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--legnotre-yellow);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Custom Offer Section */
.custom-offer-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
    margin-top: 60px;
    position: relative;
}

.custom-offer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.custom-offer-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.custom-offer-content h3 span {
    color: var(--legnotre-red);
}

.custom-offer-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.85;
    margin-bottom: 35px;
}

.custom-offer-content p strong {
    color: var(--legnotre-red);
    font-weight: 700;
}

.custom-offer-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* ========== Components Section - MÓDOSÍTVA ========== */
.components-section {
    padding: 80px 0;
    background: white;
}

.components-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Nagyobb komponens grid széles képernyőkön */
@media (min-width: 1400px) {
    .components-grid {
        gap: 50px;
        padding: 0 60px;
    }
}

@media (min-width: 1920px) {
    .components-grid {
        gap: 60px;
        padding: 0 120px;
    }
}

.component-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.component-item:hover {
    transform: translateY(-5px);
}

.component-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dupla magasságú képek asztali nézetben */
.component-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

/* Nagyobb képek asztali nézetben */
@media (min-width: 1024px) {
    .component-image {
        height: 400px;
    }
}

@media (min-width: 1400px) {
    .component-image {
        height: 450px;
    }
}

@media (min-width: 1920px) {
    .component-image {
        height: 500px;
    }
}

.component-image:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.component-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, var(--legnotre-yellow) 0%, #e6a800 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 189, 0, 0.3);
    margin-bottom: 60px;
}

.alert-banner::before {
    content: '!';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    opacity: 0.2;
    animation: pulse-icon 2s infinite;
}

.alert-banner::after {
    content: '!';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    opacity: 0.2;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.2; }
    50% { transform: translateY(-50%) scale(1.1); opacity: 0.3; }
}

.alert-banner p {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

.alert-banner a {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.alert-banner a:hover {
    color: var(--legnotre-red);
    text-decoration: none;
}

/* Video Section */
.video-assembly-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.video-assembly-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-text {
    padding-right: 30px;
}

.video-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.85;
    margin-bottom: 25px;
}

.video-text a {
    color: var(--legnotre-red);
    font-weight: 600;
    text-decoration: underline;
}

.video-text a:hover {
    text-decoration: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Why Choose Legnotre Section - MÓDOSÍTVA ========== */
.why-choose-legnotre {
    padding: 80px 0;
    background: white;
}

.why-choose-legnotre h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 60px;
    position: relative;
}

.why-choose-legnotre h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--legnotre-red);
}

.benefits-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: none; /* Törölve a korlátozás */
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Nagyobb kártyák asztali nézetben */
@media (min-width: 1024px) {
    .benefits-detailed-grid {
        gap: 50px;
    }
}

@media (min-width: 1400px) {
    .benefits-detailed-grid {
        gap: 60px;
        padding: 0 80px;
    }
}

@media (min-width: 1920px) {
    .benefits-detailed-grid {
        gap: 70px;
        padding: 0 120px;
    }
}

.benefit-detailed-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Nagyobb kártyák asztali nézetben */
@media (min-width: 1024px) {
    .benefit-detailed-card {
        padding: 40px;
        gap: 35px;
    }
}

@media (min-width: 1400px) {
    .benefit-detailed-card {
        padding: 45px;
        gap: 40px;
    }
}

@media (min-width: 1920px) {
    .benefit-detailed-card {
        padding: 50px;
        gap: 45px;
    }
}

.benefit-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--legnotre-yellow);
}

.benefit-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--legnotre-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Nagyobb számok asztali nézetben */
@media (min-width: 1024px) {
    .benefit-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (min-width: 1400px) {
    .benefit-number {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .benefit-content h3 {
        font-size: 1.4rem;
    }
}

@media (min-width: 1400px) {
    .benefit-content h3 {
        font-size: 1.5rem;
    }
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
    margin: 0;
}

@media (min-width: 1024px) {
    .benefit-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1400px) {
    .benefit-content p {
        font-size: 1.15rem;
        line-height: 1.8;
    }
}

.benefit-content a {
    color: var(--legnotre-red);
    font-weight: 600;
    text-decoration: underline;
}

.benefit-content a:hover {
    text-decoration: none;
}

/* ========== Gallery Section - MÓDOSÍTVA ========== */
.gallery-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (min-width: 1400px) {
    .gallery-grid {
        gap: 25px;
        padding: 0 60px;
    }
}

@media (min-width: 1920px) {
    .gallery-grid {
        gap: 30px;
        padding: 0 120px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lightbox stílusok */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========== FAQ Section - MÓDOSÍTVA ========== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.faq-container {
    max-width: none; /* Törölve a korlátozás */
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 1400px) {
    .faq-container {
        padding: 0 80px;
    }
}

@media (min-width: 1920px) {
    .faq-container {
        padding: 0 120px;
    }
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

@media (min-width: 1024px) {
    .faq-question {
        padding: 25px 35px;
        font-size: 1.2rem;
    }
}

@media (min-width: 1400px) {
    .faq-question {
        padding: 28px 40px;
        font-size: 1.25rem;
    }
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question[aria-expanded="true"] {
    background: var(--legnotre-yellow);
    color: var(--text-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
    margin: 0;
    border-top: 1px solid #e0e0e0;
}

@media (min-width: 1024px) {
    .faq-answer p {
        padding: 25px 35px;
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1400px) {
    .faq-answer p {
        padding: 28px 40px;
        font-size: 1.15rem;
        line-height: 1.8;
    }
}

/* Form Section Enhanced */
.contact-form-enhanced {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--legnotre-yellow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-primary);
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-falzsalu {
        padding: 80px 0;
    }
    
    .hero-white-box {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .hero-white-box h1 {
        font-size: 1.8rem;
    }
    
    .hero-white-box h2 {
        font-size: 1.05rem;
    }
    
    .trust-bar-featured .trust-items {
        flex-direction: column;
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button-large {
        width: 90%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .packages-intro h2 {
        font-size: 2rem;
    }
    
    .packages-intro p {
        font-size: 1.05rem;
    }
    
    .custom-offer-content h3 {
        font-size: 1.6rem;
    }
    
    .custom-offer-content p {
        font-size: 1rem;
    }
    
    .custom-offer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-offer-buttons .btn-primary,
    .custom-offer-buttons .btn-secondary {
        width: 250px;
        text-align: center;
    }
    
    /* Components Section */
    .components-section h2 {
        font-size: 1.8rem;
    }
    
    .components-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }
    
    .component-item h3 {
        font-size: 1.05rem;
        min-height: auto;
    }
    
    .component-image {
        height: 200px;
    }
    
    .alert-banner {
        padding: 20px 40px;
    }
    
    .alert-banner::before,
    .alert-banner::after {
        font-size: 2rem;
        left: 15px;
        right: 15px;
    }
    
    .alert-banner p {
        font-size: 1rem;
    }
    
    /* Video Section */
    .video-assembly-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-text {
        padding-right: 0;
        text-align: center;
    }
    
    .video-text h3 {
        font-size: 1.5rem;
    }
    
    .video-text p {
        font-size: 1rem;
    }
    
    /* Why Choose Section */
    .why-choose-legnotre h2 {
        font-size: 1.8rem;
    }
    
    .benefits-detailed-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 var(--spacing-sm);
    }
    
    .benefit-detailed-card {
        padding: 20px;
    }
    
    .benefit-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.15rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
    
    /* Gallery Section */
    .gallery-section h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0;
    }
    
    /* FAQ Section */
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-container {
        padding: 0 var(--spacing-sm);
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .hero-white-box {
        padding: 25px 20px;
    }
    
    .hero-white-box h1 {
        font-size: 1.5rem;
    }
    
    .hero-white-box h2 {
        font-size: 0.95rem;
    }
    
    .cta-button-large {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .packages-intro h2 {
        font-size: 1.6rem;
    }
    
    .custom-offer-section {
        padding: 40px 0;
    }
    
    .custom-offer-content h3 {
        font-size: 1.3rem;
    }
    
    .custom-offer-content p {
        font-size: 0.95rem;
    }
    
    .contact-form-enhanced {
        padding: 25px 20px;
    }
    
    /* Components Section */
    .components-section {
        padding: 50px 0;
    }
    
    .components-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .component-image {
        height: 180px;
    }
    
    .alert-banner {
        padding: 20px 25px;
    }
    
    .alert-banner::before,
    .alert-banner::after {
        display: none;
    }
    
    .alert-banner p {
        font-size: 0.95rem;
    }
    
    /* Video Section */
    .video-assembly-section {
        padding: 50px 0;
    }
    
    .video-text h3 {
        font-size: 1.3rem;
    }
    
    .video-text p {
        font-size: 0.95rem;
    }
    
    /* Why Choose Section */
    .why-choose-legnotre {
        padding: 50px 0;
    }
    
    .why-choose-legnotre h2 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .benefit-detailed-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-number {
        margin: 0 auto;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding: 15px;
    }
}