/* style/download-center-app-features.css */
.page-download-center-app-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e6e6e6; /* Default text color for dark backgrounds for good contrast */
    background-color: #0A2239; /* Default background color */
}

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

.page-download-center-app-features__container--center {
    text-align: center;
}

.page-download-center-app-features__section {
    padding: 60px 0;
    background-color: #0A2239;
    color: #e6e6e6;
}

.page-download-center-app-features__section:nth-of-type(even) {
    background-color: #1a3c5a; /* Slightly lighter dark blue for visual contrast */
}

.page-download-center-app-features__section--dark-bg {
    background-color: #0A2239;
    color: #e6e6e6;
}

.page-download-center-app-features__section--cta {
    background-color: #E0B44B;
    color: #0A2239;
    padding: 80px 0;
}

.page-download-center-app-features__hero-section {
    background: linear-gradient(135deg, #0A2239, #1a3c5a);
    padding: 100px 0 80px;
    text-align: center;
    color: #E0B44B;
    position: relative;
    overflow: hidden;
}

.page-download-center-app-features__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B44B;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-download-center-app-features__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #E0B44B;
    text-align: center;
    font-weight: bold;
}

.page-download-center-app-features__section--cta .page-download-center-app-features__section-title,
.page-download-center-app-features__section--cta .page-download-center-app-features__text {
    color: #0A2239;
}

.page-download-center-app-features__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e6e6e6;
}

.page-download-center-app-features__text--light {
    color: #e6e6e6;
}

.page-download-center-app-features__text .highlight {
    color: #E0B44B;
    font-weight: bold;
}

.page-download-center-app-features__section--cta .page-download-center-app-features__text .highlight {
    color: #0A2239;
}

.page-download-center-app-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    cursor: pointer;
}

.page-download-center-app-features__btn--primary {
    background-color: #E0B44B;
    color: #0A2239;
}

.page-download-center-app-features__btn--primary:hover {
    background-color: #cc9c3b;
    color: #000;
}

.page-download-center-app-features__btn--secondary {
    background-color: transparent;
    border: 2px solid #E0B44B;
    color: #E0B44B;
}

.page-download-center-app-features__btn--secondary:hover {
    background-color: #E0B44B;
    color: #0A2239;
}

.page-download-center-app-features__btn--download {
    background-color: #E0B44B;
    color: #0A2239;
    padding: 12px 25px;
    margin: 10px 15px;
}

.page-download-center-app-features__btn--download:hover {
    background-color: #cc9c3b;
    color: #000;
}

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

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

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

.page-download-center-app-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(40%) saturate(1500%) hue-rotate(350deg) brightness(100%) contrast(100%); /* Gold effect */
}

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

.page-download-center-app-features__feature-description {
    color: #e6e6e6;
    font-size: 1em;
}

.page-download-center-app-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-download-center-app-features__image--large {
    max-width: 80%;
    margin: 50px auto;
    display: block;
}

.page-download-center-app-features__image--medium {
    max-width: 70%;
    margin: 40px auto;
    display: block;
}

.page-download-center-app-features__image--small {
    max-width: 50%;
    margin: 30px auto;
    display: block;
}

.page-download-center-app-features__feature-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-download-center-app-features__feature-block--reverse {
    flex-direction: row-reverse;
}

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

.page-download-center-app-features__feature-image {
    flex: 1;
    text-align: center;
}

.page-download-center-app-features__feature-block-title {
    font-size: 2em;
    color: #E0B44B;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-app-features__feature-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-download-center-app-features__feature-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E0B44B"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #e6e6e6;
    font-size: 1.1em;
}

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

.page-download-center-app-features__step-item {
    background-color: #1a3c5a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(40%) saturate(1500%) hue-rotate(350deg) brightness(100%) contrast(100%);
}

.page-download-center-app-features__step-title {
    font-size: 1.6em;
    color: #E0B44B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-app-features__step-description {
    color: #e6e6e6;
    font-size: 1em;
}

.page-download-center-app-features__qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.page-download-center-app-features__qr-code {
    width: 200px;
    height: 200px;
    border: 5px solid #E0B44B;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__download-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-download-center-app-features__account-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-download-center-app-features__process-item {
    background-color: #1a3c5a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-download-center-app-features__process-title {
    font-size: 2em;
    color: #E0B44B;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-app-features__responsible-features ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-app-features__responsible-features ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E0B44B"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #e6e6e6;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-app-features__main-title {
        font-size: 2.8em;
    }
    .page-download-center-app-features__section-title {
        font-size: 2em;
    }
    .page-download-center-app-features__subtitle,
    .page-download-center-app-features__text,
    .page-download-center-app-features__feature-description,
    .page-download-center-app-features__step-description,
    .page-download-center-app-features__feature-content ul li,
    .page-download-center-app-features__responsible-features ul li {
        font-size: 1em;
    }
    .page-download-center-app-features__feature-block {
        flex-direction: column;
    }
    .page-download-center-app-features__feature-block--reverse {
        flex-direction: column;
    }
    .page-download-center-app-features__feature-image {
        order: -1; /* Image appears above content on small screens */
        margin-bottom: 30px;
    }
    .page-download-center-app-features__image--large, 
    .page-download-center-app-features__image--medium, 
    .page-download-center-app-features__image--small {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-download-center-app-features__main-title {
        font-size: 2.2em;
    }
    .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__features-grid,
    .page-download-center-app-features__download-steps,
    .page-download-center-app-features__account-process {
        grid-template-columns: 1fr;
    }
    .page-download-center-app-features__feature-block,
    .page-download-center-app-features__feature-block--reverse {
        gap: 20px;
    }
    .page-download-center-app-features__qr-code-section {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features__main-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features__subtitle {
        font-size: 1.1em;
    }
    .page-download-center-app-features__section-title {
        font-size: 1.6em;
    }
    .page-download-center-app-features__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-download-center-app-features__download-links {
        flex-direction: column;
    }
}