/* style/download-center-app-features.css */

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

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

/* Hero Section */
.page-download-center-app-features__hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #1a4d5a 100%); /* Darker gradient for depth */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-app-features__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-download-center-app-features__hero-section > .page-download-center-app-features__container {
    position: relative;
    z-index: 1;
}

.page-download-center-app-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #E0B34C; /* Highlight title with accent color */
}

.page-download-center-app-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* General Section Styling */
.page-download-center-app-features__section-title {
    font-size: 2.5em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

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

/* Buttons */
.page-download-center-app-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-download-center-app-features__btn--primary {
    background-color: #E0B34C;
    color: #0A2E36;
    box-shadow: 0 4px 15px rgba(224, 179, 76, 0.4);
}

.page-download-center-app-features__btn--primary:hover {
    background-color: #f0c55a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 179, 76, 0.6);
}

.page-download-center-app-features__btn--secondary {
    background-color: #0A2E36;
    color: #E0B34C;
    border: 2px solid #E0B34C;
}

.page-download-center-app-features__btn--secondary:hover {
    background-color: #1a4d5a;
    color: #f0c55a;
    border-color: #f0c55a;
    transform: translateY(-3px);
}

/* Features Overview */
.page-download-center-app-features__features-overview {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.page-download-center-app-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-download-center-app-features__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-download-center-app-features__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-download-center-app-features__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download-center-app-features__feature-item h3 {
    font-size: 1.8em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-download-center-app-features__feature-item p {
    color: #555;
    font-size: 1.05em;
}

/* Feature Detail Sections */
.page-download-center-app-features__feature-detail {
    padding: 80px 0;
}

.page-download-center-app-features__feature-detail:nth-of-type(odd) {
    background-color: #fff;
}

.page-download-center-app-features__feature-detail:nth-of-type(even) {
    background-color: #f0f4f7;
}

.page-download-center-app-features__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-download-center-app-features__feature-detail--left .page-download-center-app-features__content-wrapper {
    flex-direction: row;
}

.page-download-center-app-features__feature-detail--right .page-download-center-app-features__content-wrapper {
    flex-direction: row-reverse;
}

.page-download-center-app-features__text-content {
    flex: 1;
}

.page-download-center-app-features__detail-title {
    font-size: 2em;
    color: #0A2E36;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-download-center-app-features__text-content p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

.page-download-center-app-features__text-content h4 {
    font-size: 1.4em;
    color: #0A2E36;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-download-center-app-features__image-wrapper {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-download-center-app-features__detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Other Features Section */
.page-download-center-app-features__other-features {
    padding: 80px 0;
    background-color: #0A2E36;
    color: #fff;
}

.page-download-center-app-features__other-features .page-download-center-app-features__section-title {
    color: #E0B34C;
}

.page-download-center-app-features__other-features .page-download-center-app-features__section-title::after {
    background-color: #fff;
}

.page-download-center-app-features__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-download-center-app-features__feature-list li {
    background-color: #1a4d5a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.15em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__list-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.page-download-center-app-features__feature-list li strong {
    color: #E0B34C;
    margin-right: 5px;
}

/* Download CTA Section */
.page-download-center-app-features__download-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.page-download-center-app-features__cta-text {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-app-features__download-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.page-download-center-app-features__download-steps li {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #f0f4f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
    position: relative;
    counter-increment: step-counter;
}

.page-download-center-app-features__download-steps li::before {
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #E0B34C;
    color: #0A2E36;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__download-steps li strong {
    display: block;
    color: #0A2E36;
    margin-bottom: 10px;
    font-size: 1.15em;
}

.page-download-center-app-features__register-prompt {
    margin-top: 30px;
    font-size: 1.1em;
    color: #555;
}

.page-download-center-app-features__register-link {
    color: #E0B34C;
    text-decoration: none;
    font-weight: bold;
}

.page-download-center-app-features__register-link:hover {
    text-decoration: underline;
}

/* Conclusion Section */
.page-download-center-app-features__conclusion {
    padding: 80px 0;
    background-color: #0A2E36;
    color: #e0e0e0;
    text-align: center;
}

.page-download-center-app-features__conclusion .page-download-center-app-features__section-title {
    color: #E0B34C;
}

.page-download-center-app-features__conclusion .page-download-center-app-features__section-title::after {
    background-color: #fff;
}

.page-download-center-app-features__conclusion p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #ccc;
}

/* Highlight Spans */
.page-download-center-app-features .highlight {
    color: #E0B34C;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-app-features__hero-title {
        font-size: 2.5em;
    }

    .page-download-center-app-features__section-title {
        font-size: 2em;
    }

    .page-download-center-app-features__content-wrapper {
        flex-direction: column !important; /* Override for mobile */
        text-align: center;
    }

    .page-download-center-app-features__image-wrapper {
        min-width: unset;
        margin-top: 30px;
    }

    .page-download-center-app-features__detail-title {
        font-size: 1.8em;
    }

    .page-download-center-app-features__feature-list li {
        flex-direction: column;
        text-align: center;
    }

    .page-download-center-app-features__list-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-download-center-app-features__hero-title {
        font-size: 2em;
    }

    .page-download-center-app-features__hero-subtitle,
    .page-download-center-app-features__cta-text,
    .page-download-center-app-features__conclusion p {
        font-size: 1em;
    }

    .page-download-center-app-features__section-title {
        font-size: 1.8em;
    }

    .page-download-center-app-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-app-features__feature-item h3 {
        font-size: 1.5em;
    }

    .page-download-center-app-features__text-content p {
        font-size: 1em;
    }

    .page-download-center-app-features__download-steps {
        flex-direction: column;
        align-items: center;
    }

    .page-download-center-app-features__download-steps li {
        max-width: 90%;
        width: 100%;
    }
}