/* style/download-center.css */
.page-download-center {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-download-center__hero-section {
    background: linear-gradient(135deg, #2D3E50 0%, #3a506b 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #F39C12;
}

.page-download-center__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #F39C12;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-download-center__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

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

.page-download-center__btn--primary {
    background-color: #F39C12;
    color: #2D3E50;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-download-center__btn--primary:hover {
    background-color: #e08e0b;
    transform: translateY(-3px);
}

.page-download-center__hero-image-wrapper {
    margin-top: 50px;
}

.page-download-center__hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-download-center__intro-section, 
.page-download-center__download-options-section, 
.page-download-center__guide-section, 
.page-download-center__cta-section, 
.page-download-center__ad-banner-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-download-center__section-title {
    font-size: 2.5em;
    color: #2D3E50;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-download-center__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    border-radius: 2px;
}

.page-download-center__section-text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

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

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

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

.page-download-center__feature-title {
    font-size: 1.5em;
    color: #2D3E50;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center__feature-description {
    color: #666;
    font-size: 1em;
}

/* Detail List Grid (Download Options, Guides) */
.page-download-center__detail-list-grid, .page-download-center__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center__detail-card, .page-download-center__guide-card {
    background-color: #f2f4f6;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-download-center__detail-image, .page-download-center__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.page-download-center__detail-title, .page-download-center__guide-title {
    font-size: 1.4em;
    color: #2D3E50;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-download-center__detail-title a, .page-download-center__guide-title a {
    color: #2D3E50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-download-center__detail-title a:hover, .page-download-center__guide-title a:hover {
    color: #F39C12;
}

.page-download-center__detail-description, .page-download-center__guide-description {
    color: #666;
    font-size: 0.95em;
    padding: 0 15px 20px 15px;
    min-height: 80px; /* Ensure consistent card height */
}

.page-download-center__btn--secondary {
    background-color: #2D3E50;
    color: #ffffff;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.page-download-center__btn--secondary:hover {
    background-color: #1f2a36;
    transform: translateY(-2px);
}

/* CTA Section */
.page-download-center__cta-section {
    background-color: #2D3E50;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #F39C12;
}

.page-download-center__cta-section .page-download-center__section-title {
    color: #F39C12;
}

.page-download-center__cta-section .page-download-center__section-text {
    color: #e0e0e0;
}

.page-download-center__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-download-center__small-text {
    font-size: 0.9em;
    margin-top: 20px;
}

.page-download-center__link {
    color: #F39C12;
    text-decoration: none;
    font-weight: bold;
}

.page-download-center__link:hover {
    text-decoration: underline;
}

/* Ad Banner Section */
.page-download-center__ad-banner-section {
    background-color: #fefefe;
    padding: 40px 0;
}

.page-download-center__ad-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, #F39C12 0%, #e08e0b 100%);
    border-radius: 15px;
    padding: 30px;
    color: #2D3E50;
    text-align: center;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.page-download-center__ad-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-download-center__ad-content {
    max-width: 700px;
}

.page-download-center__ad-title {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #2D3E50;
}

.page-download-center__ad-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #3a506b;
}

.page-download-center__btn--ad {
    background-color: #2D3E50;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1.1em;
    border-radius: 8px;
}

.page-download-center__btn--ad:hover {
    background-color: #1f2a36;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center__hero-title {
        font-size: 2.5em;
    }
    .page-download-center__section-title {
        font-size: 2em;
    }
    .page-download-center__features-grid, 
    .page-download-center__detail-list-grid, 
    .page-download-center__guide-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .page-download-center__ad-banner {
        flex-direction: column;
    }
    .page-download-center__ad-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-download-center__hero-section {
        padding: 60px 0;
    }
    .page-download-center__hero-title {
        font-size: 2em;
    }
    .page-download-center__hero-description {
        font-size: 1.1em;
    }
    .page-download-center__section-title {
        font-size: 1.8em;
    }
    .page-download-center__section-text {
        font-size: 1em;
    }
    .page-download-center__features-grid, 
    .page-download-center__detail-list-grid, 
    .page-download-center__guide-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center__ad-title {
        font-size: 1.8em;
    }
    .page-download-center__ad-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero-title {
        font-size: 1.8em;
    }
    .page-download-center__hero-description {
        font-size: 1em;
    }
    .page-download-center__btn--primary, .page-download-center__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center__section-title {
        font-size: 1.5em;
    }
    .page-download-center__feature-title, .page-download-center__detail-title, .page-download-center__guide-title {
        font-size: 1.2em;
    }
    .page-download-center__ad-title {
        font-size: 1.5em;
    }
}