/* Product Page Specific Styles */
/* Banner styles are now handled by assets/css/blocks/banner-section.css */

.product-content-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Download Section Styles */
.product-download-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    color: #fff;
    /* Fallback blue background */
    background-color: #003366; 
}

.product-download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Black semi-transparent mask */
    background-color: rgb(0 0 0 / 41%); 
    z-index: 1;
}

.product-download-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.download-item {
    margin-bottom: 25px;
}

.download-item-name {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.download-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
    background: transparent;
    border-radius: 2px;
}

.download-btn:hover {
    background: #fff;
    color: #003366;
}

.download-btn + .download-btn {
    margin-left: 15px;
}

/* FAQ Section Styles */
.product-faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #004080;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: #f9f9f9;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px; /* Approximate max height */
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    .product-single-banner {
        min-height: 250px;
    }
    .product-single-overlay {
        background: rgba(255,255,255,0.85); /* More solid on mobile */
    }
    .product-title {
        font-size: 28px;
        max-width: 100%;
    }
}
