/* style/download-center.css */
.page-download-center {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2E36; /* Main background color */
    line-height: 1.6;
}

.page-download-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-download-center__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-center__section:nth-child(even) {
    background-color: #0C3A44; /* Slightly lighter dark background for contrast */
}

.page-download-center__section-title {
    font-size: 2.5em;
    color: #E0B34C; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-download-center__section-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-download-center__btn--primary {
    background-color: #E0B34C; /* Accent color for primary buttons */
    color: #0A2E36; /* Dark text for light button */
    border: 2px solid #E0B34C;
}

.page-download-center__btn--primary:hover {
    background-color: #c99c3a;
    border-color: #c99c3a;
}

.page-download-center__btn--secondary {
    background-color: transparent;
    color: #E0B34C; /* Accent color for secondary buttons */
    border: 2px solid #E0B34C;
}

.page-download-center__btn--secondary:hover {
    background-color: #E0B34C;
    color: #0A2E36;
}

.page-download-center__btn--link {
    color: #E0B34C;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    font-size: 1em;
}

.page-download-center__btn--link:hover {
    color: #c99c3a;
}

/* Hero Section */
.page-download-center__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #1a4a54 100%);
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.page-download-center__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_pattern,tech_lines]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-download-center__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

.page-download-center__hero-title {
    font-size: 3.8em;
    color: #E0B34C;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-download-center__hero-subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 500px;
    opacity: 0.7;
    z-index: 0;
    transform: translateX(20%);
}

.page-download-center__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section */
.page-download-center__why-choose {
    background-color: #0C3A44;
}

.page-download-center__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center__feature-item {
    background-color: #1a4a54;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E0B34C);
}

.page-download-center__feature-title {
    font-size: 1.6em;
    color: #E0B34C;
    margin-bottom: 15px;
}

.page-download-center__feature-text {
    font-size: 1em;
    color: #e0e0e0;
}

/* Download Options Section (Detail Pages List) */
.page-download-center__download-options {
    background-color: #0A2E36;
}

.page-download-center__detail-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center__detail-card {
    background-color: #1a4a54;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center__detail-title {
    font-size: 1.5em;
    color: #E0B34C;
    margin-bottom: 15px;
}

.page-download-center__detail-title a {
    color: #E0B34C;
    text-decoration: none;
}

.page-download-center__detail-title a:hover {
    text-decoration: underline;
}

.page-download-center__detail-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Call to Action (CTA) Section */
.page-download-center__cta {
    background-color: #0C3A44;
}

.page-download-center__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-download-center__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-download-center__cta-text-wrapper {
    text-align: center;
}

/* FAQ Section */
.page-download-center__faq {
    background-color: #0A2E36;
}

.page-download-center__faq-items {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center__faq-item {
    background-color: #1a4a54;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-download-center__faq-question {
    font-size: 1.3em;
    color: #E0B34C;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-download-center__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center__faq-answer {
    font-size: 1em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-download-center__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Latest Info Section */
.page-download-center__latest-info {
    background-color: #0C3A44;
}

.page-download-center__info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center__info-card {
    background-color: #1a4a54;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px #E0B34C);
}

.page-download-center__info-title {
    font-size: 1.4em;
    color: #E0B34C;
    margin-bottom: 10px;
}

.page-download-center__info-text {
    font-size: 0.95em;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Contact Section */
.page-download-center__contact {
    background-color: #0A2E36;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center__hero-title {
        font-size: 3em;
    }
    .page-download-center__hero-subtitle {
        font-size: 1.2em;
    }
    .page-download-center__hero-image-wrapper {
        width: 50%;
        transform: translateX(10%);
    }
    .page-download-center__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-download-center__hero {
        padding: 80px 0 20px;
        flex-direction: column;
    }
    .page-download-center__hero-content {
        order: 2;
    }
    .page-download-center__hero-image-wrapper {
        position: static;
        width: 80%;
        max-width: 400px;
        margin-top: 40px;
        transform: none;
        opacity: 1;
        order: 1;
    }
    .page-download-center__hero-title {
        font-size: 2.5em;
    }
    .page-download-center__hero-subtitle {
        font-size: 1.1em;
    }
    .page-download-center__features-grid,
    .page-download-center__detail-pages-grid,
    .page-download-center__info-cards {
        grid-template-columns: 1fr;
    }
    .page-download-center__cta-content {
        flex-direction: column;
    }
    .page-download-center__cta-image {
        order: 1;
    }
    .page-download-center__cta-text-wrapper {
        order: 2;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero-title {
        font-size: 2em;
    }
    .page-download-center__hero-subtitle {
        font-size: 1em;
    }
    .page-download-center__section-title {
        font-size: 1.8em;
    }
    .page-download-center__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}