/* Modern FAQ Page Styles - Scoped to .new_design */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth !important;
}

/* Hero Section */
.new_design .faq-hero {
    position: relative !important;
    min-height: 40vh !important;
    background-image: url('/images/new/Image_202512311344.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.new_design .faq-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0, 92, 187, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    z-index: 1 !important;
}

.new_design .faq-hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    padding: 40px 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.new_design .faq-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.new_design .faq-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem) !important;
    font-weight: 400 !important;
    color: #ffd700 !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4) !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Content Section */
.new_design .faq-content-section {
    padding: 80px 0 100px !important;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%) !important;
}

/* Quick Navigation */
.new_design .faq-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin-bottom: 60px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid #005cbb !important;
}

.new_design .faq-nav-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
}

.new_design .faq-nav-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.new_design .faq-nav-button {
    display: inline-block !important;
    padding: 18px 40px !important;
    background: linear-gradient(135deg, #005cbb 0%, #00a8e8 100%) !important;
    color: #ffffff !important;
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 92, 187, 0.3) !important;
    border: 2px solid transparent !important;
}

.new_design .faq-nav-button:hover {
    background: linear-gradient(135deg, #00a8e8 0%, #005cbb 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(0, 92, 187, 0.4) !important;
    border-color: #ffd700 !important;
    text-decoration: none !important;
    color: #ffffff !important;
}

/* FAQ Section */
.new_design .faq-section {
    margin-bottom: 60px !important;
    scroll-margin-top: 100px !important;
}

.new_design .faq-section:last-child {
    margin-bottom: 0 !important;
}

.new_design .faq-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 40px !important;
    padding-bottom: 20px !important;
    border-bottom: 4px solid #005cbb !important;
    line-height: 1.3 !important;
}

/* FAQ Notice */
.new_design .faq-notice {
    background: linear-gradient(135deg, #005cbb 0%, #00a8e8 100%) !important;
    border-radius: 15px !important;
    padding: 30px 40px !important;
    text-align: center !important;
    box-shadow: 0 5px 20px rgba(0, 92, 187, 0.2) !important;
}

.new_design .faq-notice p {
    font-size: 1.35rem !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.new_design .faq-link {
    color: #ffd700 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    transition: all 0.3s ease !important;
}

.new_design .faq-link:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* FAQ Grid */
.new_design .faq-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

/* FAQ Item */
.new_design .faq-item {
    background: #ffffff !important;
    border-radius: 15px !important;
    padding: 35px 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border-left: 5px solid #005cbb !important;
}

.new_design .faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 92, 187, 0.15) !important;
    transform: translateY(-3px) !important;
}

.new_design .faq-question {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
    padding-right: 20px !important;
}

.new_design .faq-answer {
    color: #2c2c2c !important;
}

.new_design .faq-answer p {
    font-size: 1.35rem !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    color: #2c2c2c !important;
}

.new_design .faq-answer p:last-child {
    margin-bottom: 0 !important;
}

.new_design .faq-answer strong {
    color: #005cbb !important;
    font-weight: 700 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .new_design .faq-content-section {
        padding: 50px 0 !important;
    }
    
    .new_design .faq-hero {
        min-height: 30vh !important;
    }
    
    .new_design .faq-hero-content {
        padding: 30px 20px !important;
    }
    
    .new_design .faq-navigation {
        padding: 30px 20px !important;
        margin-bottom: 50px !important;
    }
    
    .new_design .faq-nav-title {
        font-size: 1.5rem !important;
    }
    
    .new_design .faq-nav-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .new_design .faq-nav-button {
        width: 100% !important;
        padding: 15px 30px !important;
        font-size: 1.25rem !important;
    }
    
    .new_design .faq-section {
        margin-bottom: 50px !important;
        scroll-margin-top: 80px !important;
    }
    
    .new_design .faq-item {
        padding: 25px 20px !important;
        border-left-width: 4px !important;
    }
    
    .new_design .faq-question {
        font-size: 1.3rem !important;
    }
    
    .new_design .faq-answer p {
        font-size: 1.25rem !important;
    }
    
    .new_design .faq-notice {
        padding: 25px 20px !important;
    }
    
    .new_design .faq-notice p {
        font-size: 1.25rem !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new_design .faq-item {
    animation: fadeInUp 0.5s ease-out backwards !important;
}

.new_design .faq-item:nth-child(1) { animation-delay: 0.05s !important; }
.new_design .faq-item:nth-child(2) { animation-delay: 0.08s !important; }
.new_design .faq-item:nth-child(3) { animation-delay: 0.11s !important; }
.new_design .faq-item:nth-child(4) { animation-delay: 0.14s !important; }
.new_design .faq-item:nth-child(5) { animation-delay: 0.17s !important; }
.new_design .faq-item:nth-child(6) { animation-delay: 0.2s !important; }
.new_design .faq-item:nth-child(7) { animation-delay: 0.23s !important; }
.new_design .faq-item:nth-child(8) { animation-delay: 0.26s !important; }
.new_design .faq-item:nth-child(9) { animation-delay: 0.29s !important; }
.new_design .faq-item:nth-child(10) { animation-delay: 0.32s !important; }
.new_design .faq-item:nth-child(n+11) { animation-delay: 0.35s !important; }

