/* FAQ Section Styles */
#faq {
    padding: 20px 0 100px;
    position: relative;
    background: transparent;
}

/* Section Title Styling */
.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0 0 60px 0;
    text-align: center;
}

.faq-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Box Styling */
.faq-box {
    width: 350px;
    height: 100%; /* Ensure all boxes take the full height of the tallest one */
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Matching About Alpine border */
    border-radius: 30px; /* Matching About Alpine radius */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.faq-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Image Headers */
.requirements-bg,
.activity-bg,
.application-bg,
.faq-image {
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    flex-shrink: 0; /* Prevent images from shrinking */
}

.requirements-bg {
    background: url('/img/Photo/Requirements.png');
}

.activity-bg {
    background: url('/img/Photo/Activity.png');
}

.application-bg {
    background: url('/img/Photo/application.png');
}

/* Dark Overlay */
.requirements-bg::before,
.activity-bg::before,
.application-bg::before,
.faq-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.faq-box:hover [class*='-bg']::before,
.faq-box:hover .faq-image::before {
    background: rgba(0, 0, 0, 0.3);
}

/* Box Title */
.faq-box h3 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: center;
}

/* Content */
.faq-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
    font-weight: 300;
    flex-grow: 1; /* Allow content to grow/fill space if needed */
}

.faq-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* List items usually look better left-aligned or centered? Alpine theme seems centered text usually. Let's keep it left for list with icons */
}

.faq-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

/* Restore Checkmarks */
.faq-content li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: #16724B; /* Alpine Green */
    font-size: 1.1em;
}

