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

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

.page-download-center-app-features__hero {
    background: linear-gradient(135deg, #0056b3, #004085);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-download-center-app-features__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

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

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

.page-download-center-app-features__button--primary {
    background-color: #ffd700;
    color: #0056b3; /* Dark blue text on gold button */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__button--secondary {
    background-color: #0056b3;
    color: #ffd700; /* Gold text on dark blue button */
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__button--secondary:hover {
    background-color: #004085;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__section {
    padding: 60px 0;
}

.page-download-center-app-features__section--alt-bg {
    background-color: #e0e7ed; /* Light grey-blue for contrast */
}

.page-download-center-app-features__section--conclusion {
    text-align: center;
    background-color: #0056b3;
    color: #fff;
    padding: 80px 0;
}

.page-download-center-app-features__section--conclusion .page-download-center-app-features__heading,
.page-download-center-app-features__section--conclusion .page-download-center-app-features__subtitle {
    color: #ffd700;
}

.page-download-center-app-features__heading {
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-download-center-app-features__subheading {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 20px;
}

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

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

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

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

.page-download-center-app-features__grid-item .page-download-center-app-features__subheading {
    color: #0056b3;
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

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

.page-download-center-app-features__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

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

.page-download-center-app-features__feature-icon {
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #0056b3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-features__feature-item .page-download-center-app-features__subheading {
    color: #0056b3;
    font-size: 1.6em;
    margin-top: 15px;
    margin-bottom: 10px;
}

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

.page-download-center-app-features__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-features__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-app-features__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-download-center-app-features__step-item .page-download-center-app-features__subheading {
    font-size: 1.5em;
    color: #0056b3;
    margin-top: 0;
}

.page-download-center-app-features__step-item ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 25px;
    color: #555;
}

.page-download-center-app-features__step-item ol li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-download-center-app-features__download-image,
.page-download-center-app-features__registration-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-features__registration-cta {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
    text-align: center;
}

.page-download-center-app-features__registration-cta .page-download-center-app-features__subheading {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 0;
}

.page-download-center-app-features__registration-cta p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.page-download-center-app-features__registration-cta ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-download-center-app-features__registration-cta ol li {
    margin-bottom: 10px;
}

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

    .page-download-center-app-features__subtitle {
        font-size: 1.1em;
    }

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

    .page-download-center-app-features__subheading {
        font-size: 1.5em;
    }

    .page-download-center-app-features__grid,
    .page-download-center-app-features__features-list,
    .page-download-center-app-features__download-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-download-center-app-features__hero {
        padding: 60px 0;
    }

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

    .page-download-center-app-features__subtitle {
        font-size: 1em;
    }

    .page-download-center-app-features__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-download-center-app-features__subheading {
        font-size: 1.3em;
    }

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

    .page-download-center-app-features__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features__title {
        font-size: 1.8em;
    }

    .page-download-center-app-features__subtitle {
        font-size: 0.9em;
    }

    .page-download-center-app-features__heading {
        font-size: 1.5em;
    }

    .page-download-center-app-features__subheading {
        font-size: 1.1em;
    }

    .page-download-center-app-features__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-download-center-app-features__feature-icon {
        font-size: 2.5em;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}