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

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

.page-download-center__hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-download-center__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-download-center__hero-image-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

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

.page-download-center__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center__section:nth-of-type(even) {
    background-color: #f0f4f8;
}

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

.page-download-center__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

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

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

.page-download-center__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-download-center__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-download-center__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    padding: 12px 25px;
}

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

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

.page-download-center__btn--link:hover {
    color: #FFCC00;
    text-decoration: none;
}

/* Why Download Section */
.page-download-center__why-download {
    background-color: #f0f4f8;
}

.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 {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Download Options Section */
.page-download-center__download-platform {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid #FFCC00;
}

.page-download-center__platform-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 25px;
    text-align: center;
}

.page-download-center__platform-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.page-download-center__platform-content--reverse {
    flex-direction: row-reverse;
}

.page-download-center__platform-text {
    flex: 1;
    min-width: 300px;
}

.page-download-center__platform-text p {
    margin-bottom: 20px;
    color: #444;
}

.page-download-center__steps-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-download-center__steps-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.page-download-center__steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-weight: bold;
}

.page-download-center__platform-image-qr {
    flex-basis: 300px;
    text-align: center;
    padding: 20px;
    background-color: #fcfcfc;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.page-download-center__qr-code {
    max-width: 200px;
    height: auto;
    border: 5px solid #003366;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-download-center__image-caption {
    font-size: 0.9em;
    color: #777;
}

/* App Features Section */
.page-download-center__app-features {
    background-color: #003366;
    color: #ffffff;
}

.page-download-center__app-features .page-download-center__section-title {
    color: #FFCC00;
}

.page-download-center__app-features .page-download-center__section-intro {
    color: #e0e0e0;
}

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

.page-download-center__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.page-download-center__feature-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-download-center__feature-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(255, 204, 0, 0.3));
}

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

.page-download-center__feature-card-description {
    color: #e0e0e0;
    font-size: 0.95em;
}

/* Troubleshooting Section */
.page-download-center__troubleshooting {
    background-color: #f0f4f8;
}

.page-download-center__troubleshoot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.page-download-center__troubleshoot-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #003366;
}

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

.page-download-center__troubleshoot-description {
    color: #555;
    font-size: 0.95em;
}

.page-download-center__troubleshoot-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #444;
}

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

.page-download-center__troubleshoot-cta .page-download-center__link:hover {
    color: #FFCC00;
    text-decoration: underline;
}

/* Related Pages Section */
.page-download-center__related-pages {
    background-color: #ffffff;
}

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

.page-download-center__detail-card {
    background-color: #fcfcfc;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center__detail-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-download-center__detail-title a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

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

.page-download-center__detail-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* CTA Register Section */
.page-download-center__cta-register {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-download-center__cta-register .page-download-center__section-title {
    color: #FFCC00;
}

.page-download-center__cta-register .page-download-center__section-intro {
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* 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__platform-content {
        flex-direction: column;
    }
    .page-download-center__platform-content--reverse {
        flex-direction: column;
    }
    .page-download-center__platform-image-qr {
        order: -1; /* QR code above text on small screens */
    }
}

@media (max-width: 768px) {
    .page-download-center__hero {
        padding: 60px 0;
    }
    .page-download-center__hero-title {
        font-size: 2em;
    }
    .page-download-center__hero-description {
        font-size: 1em;
    }
    .page-download-center__section {
        padding: 40px 0;
    }
    .page-download-center__section-title {
        font-size: 1.8em;
    }
    .page-download-center__section-intro {
        font-size: 0.95em;
    }
    .page-download-center__features-grid,
    .page-download-center__features-list,
    .page-download-center__troubleshoot-grid,
    .page-download-center__detail-pages-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center__platform-title {
        font-size: 1.6em;
    }
    .page-download-center__platform-image-qr {
        flex-basis: auto;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero-title {
        font-size: 1.8em;
    }
    .page-download-center__hero-description {
        font-size: 0.9em;
    }
    .page-download-center__feature-title {
        font-size: 1.3em;
    }
    .page-download-center__feature-card-title {
        font-size: 1.4em;
    }
}