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

/* Base styles for the page content area */
.page-app-download-features {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.page-app-download-features__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475c 100%); /* Gradient for depth */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-features__title {
    font-size: 2.8em;
    font-weight: bold;
    color: #E0B400; /* Accent color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-app-download-features__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.page-app-download-features__button--primary {
    background-color: #E0B400; /* Accent color */
    color: #1A202C; /* Dark text on accent */
    border: 2px solid #E0B400;
}

.page-app-download-features__button--primary:hover {
    background-color: #ffc900;
    border-color: #ffc900;
    transform: translateY(-3px);
}

.page-app-download-features__button--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-app-download-features__button--secondary:hover {
    background-color: #E0B400;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-app-download-features__hero-image-wrapper {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styling */
.page-app-download-features__section {
    padding: 60px 0;
    background-color: #282f3d; /* Slightly lighter dark background for sections */
    margin-bottom: 20px;
}

.page-app-download-features__section:nth-of-type(even) {
    background-color: #1A202C; /* Alternating background for visual separation */
}

.page-app-download-features__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #E0B400;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-app-download-features__section-description {
    font-size: 1.1em;
    color: #CCCCCC;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Advantages Section */
.page-app-download-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.page-app-download-features__feature-item:hover {
    transform: translateY(-5px);
}

.page-app-download-features__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.7)); /* Glow effect for icons */
}

.page-app-download-features__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #E0B400;
    margin-bottom: 15px;
}

.page-app-download-features__feature-text {
    font-size: 1em;
    color: #E0E0E0;
}

/* How to Download Section */
.page-app-download-features__how-to-download {
    background-color: #1A202C;
}

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

.page-app-download-features__step-item {
    background-color: #282f3d;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-features__step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #E0B400;
    color: #1A202C;
    font-size: 2.5em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(224, 180, 0, 0.5);
    z-index: 1;
}

.page-app-download-features__step-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #E0B400;
    margin-top: 30px; /* Adjust for number */
    margin-bottom: 15px;
}

.page-app-download-features__step-text {
    font-size: 0.95em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-app-download-features__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-app-download-features__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* App Features Section */
.page-app-download-features__app-features {
    background-color: #282f3d;
}

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

.page-app-download-features__feature-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-features__feature-card:hover {
    transform: translateY(-5px);
    background-color: #333d4f;
}

.page-app-download-features__card-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #E0B400;
    margin-bottom: 10px;
}

.page-app-download-features__card-text {
    font-size: 1em;
    color: #E0E0E0;
}

/* Security & Trust Section */
.page-app-download-features__security-trust {
    background-color: #1A202C;
}

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

.page-app-download-features__security-text {
    flex: 1;
}

.page-app-download-features__security-subtitle {
    font-size: 1.6em;
    font-weight: bold;
    color: #E0B400;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-app-download-features__security-paragraph {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-app-download-features__security-image-wrapper {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.page-app-download-features__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Final CTA Section */
.page-app-download-features__cta-final {
    background: linear-gradient(135deg, #282f3d 0%, #1A202C 100%);
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-app-download-features__hero {
        padding: 100px 0 60px;
    }
    .page-app-download-features__title {
        font-size: 3.5em;
    }
    .page-app-download-features__section-title {
        font-size: 2.8em;
    }
    .page-app-download-features__security-content {
        flex-direction: row;
    }
    .page-app-download-features__security-text {
        padding-right: 40px;
    }
    .page-app-download-features__feature-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .page-app-download-features__title {
        font-size: 2em;
    }
    .page-app-download-features__subtitle {
        font-size: 1em;
    }
    .page-app-download-features__button {
        width: 100%;
        max-width: 300px;
    }
    .page-app-download-features__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-app-download-features__section-title {
        font-size: 1.8em;
    }
    .page-app-download-features__section-description {
        font-size: 0.95em;
    }
    .page-app-download-features__feature-title,
    .page-app-download-features__card-title,
    .page-app-download-features__security-subtitle {
        font-size: 1.2em;
    }
    .page-app-download-features__feature-text,
    .page-app-download-features__card-text,
    .page-app-download-features__security-paragraph {
        font-size: 0.9em;
    }
    .page-app-download-features__hero-image-wrapper {
        margin-top: 20px;
    }
    .page-app-download-features__step-number {
        font-size: 2em;
        width: 50px;
        height: 50px;
    }
    .page-app-download-features__step-title {
        margin-top: 20px;
    }
}