/* style/app-download-system-requirements.css */

.page-app-download-system-requirements {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1A2E44;
    line-height: 1.6;
}

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

.page-app-download-system-requirements__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #304e6e 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-app-download-system-requirements__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-system-requirements__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-app-download-system-requirements__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-system-requirements__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;
    text-align: center;
    cursor: pointer;
}

.page-app-download-system-requirements__btn--primary {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
}

.page-app-download-system-requirements__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-system-requirements__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-app-download-system-requirements__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-system-requirements__section {
    padding: 80px 0;
    background-color: #1A2E44;
}

.page-app-download-system-requirements__section:nth-of-type(even) {
    background-color: #253F5C;
}

.page-app-download-system-requirements__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-app-download-system-requirements__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #e0e0e0;
}

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

.page-app-download-system-requirements__feature-item,
.page-app-download-system-requirements__info-block,
.page-app-download-system-requirements__security-item {
    background-color: #304e6e;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-system-requirements__feature-item:hover,
.page-app-download-system-requirements__info-block:hover,
.page-app-download-system-requirements__security-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-app-download-system-requirements__feature-icon,
.page-app-download-system-requirements__info-icon,
.page-app-download-system-requirements__os-icon,
.page-app-download-system-requirements__security-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-system-requirements__feature-title,
.page-app-download-system-requirements__info-title,
.page-app-download-system-requirements__os-title,
.page-app-download-system-requirements__security-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-download-system-requirements__feature-item p,
.page-app-download-system-requirements__info-block p,
.page-app-download-system-requirements__security-item p {
    font-size: 1em;
    color: #c0c0c0;
}

.page-app-download-system-requirements__os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.page-app-download-system-requirements__os-item {
    background-color: #304e6e;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.page-app-download-system-requirements__os-item .page-app-download-system-requirements__os-title {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

.page-app-download-system-requirements__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}

.page-app-download-system-requirements__list li {
    background-color: #1A2E44;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    font-size: 1.05em;
    color: #e0e0e0;
}

.page-app-download-system-requirements__list li strong {
    color: #FFD700;
}

.page-app-download-system-requirements__os-note {
    font-style: italic;
    color: #a0a0a0;
    font-size: 0.95em;
    text-align: center;
    margin-top: 20px;
}

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

.page-app-download-system-requirements__step-item {
    background-color: #304e6e;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-app-download-system-requirements__step-number {
    background-color: #FFD700;
    color: #1A2E44;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

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

.page-app-download-system-requirements__step-item p {
    color: #c0c0c0;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-app-download-system-requirements__step-item a {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-app-download-system-requirements__step-item a:hover {
    color: #e6c200;
}

.page-app-download-system-requirements__list--small li {
    padding: 10px 15px;
    font-size: 0.95em;
}

.page-app-download-system-requirements__security .page-app-download-system-requirements__grid--security {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-app-download-system-requirements__security-footer {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #e0e0e0;
}

.page-app-download-system-requirements__faq-list {
    margin-top: 40px;
}

.page-app-download-system-requirements__faq-item {
    background-color: #304e6e;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-system-requirements__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-app-download-system-requirements__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-app-download-system-requirements__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-app-download-system-requirements__faq-answer {
    padding: 0 30px 20px;
    color: #c0c0c0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-app-download-system-requirements__faq-question.active + .page-app-download-system-requirements__faq-answer {
    max-height: 300px; /* Adjust based on expected content length */
    padding: 0 30px 30px;
}

.page-app-download-system-requirements__cta {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #1A2E44;
}

.page-app-download-system-requirements__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1A2E44;
}

.page-app-download-system-requirements__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #304e6e;
}

.page-app-download-system-requirements .keyword {
    font-weight: bold;
    color: #FFD700;
}

.page-app-download-system-requirements .highlight {
    color: #FFD700;
}

.page-app-download-system-requirements__cta .keyword,
.page-app-download-system-requirements__cta .highlight {
    color: #1A2E44;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-app-download-system-requirements__hero-title {
        font-size: 3em;
    }
    .page-app-download-system-requirements__section-title {
        font-size: 2.5em;
    }
    .page-app-download-system-requirements__cta-title {
        font-size: 2.5em;
    }
    .page-app-download-system-requirements__os-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-app-download-system-requirements__hero {
        padding: 80px 0;
    }
    .page-app-download-system-requirements__hero-title {
        font-size: 2.5em;
    }
    .page-app-download-system-requirements__hero-description {
        font-size: 1.1em;
    }
    .page-app-download-system-requirements__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-app-download-system-requirements__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-app-download-system-requirements__section {
        padding: 60px 0;
    }
    .page-app-download-system-requirements__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-app-download-system-requirements__section-intro {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-app-download-system-requirements__grid,
    .page-app-download-system-requirements__installation-steps,
    .page-app-download-system-requirements__security .page-app-download-system-requirements__grid--security {
        grid-template-columns: 1fr;
    }
    .page-app-download-system-requirements__feature-item,
    .page-app-download-system-requirements__info-block,
    .page-app-download-system-requirements__os-item,
    .page-app-download-system-requirements__step-item,
    .page-app-download-system-requirements__security-item {
        padding: 25px;
    }
    .page-app-download-system-requirements__feature-icon,
    .page-app-download-system-requirements__info-icon,
    .page-app-download-system-requirements__os-icon,
    .page-app-download-system-requirements__security-icon {
        width: 60px;
        height: 60px;
    }
    .page-app-download-system-requirements__feature-title,
    .page-app-download-system-requirements__info-title,
    .page-app-download-system-requirements__os-title,
    .page-app-download-system-requirements__security-title {
        font-size: 1.4em;
    }
    .page-app-download-system-requirements__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-app-download-system-requirements__step-title {
        font-size: 1.3em;
    }
    .page-app-download-system-requirements__faq-question {
        font-size: 1.2em;
        padding: 18px 25px;
    }
    .page-app-download-system-requirements__faq-answer {
        padding: 0 25px 25px;
    }
    .page-app-download-system-requirements__cta {
        padding: 60px 0;
    }
    .page-app-download-system-requirements__cta-title {
        font-size: 2em;
    }
    .page-app-download-system-requirements__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-app-download-system-requirements__hero-title {
        font-size: 2em;
    }
    .page-app-download-system-requirements__section-title {
        font-size: 1.8em;
    }
    .page-app-download-system-requirements__cta-title {
        font-size: 1.8em;
    }
    .page-app-download-system-requirements__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-app-download-system-requirements__list li {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    .page-app-download-system-requirements__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-app-download-system-requirements__faq-answer {
        padding: 0 20px 20px;
    }
}