/* style/app-download-desktop-client.css */

:root {
    --page-app-download-desktop-client-primary-color: #FFD700; /* Gold */
    --page-app-download-desktop-client-secondary-color: #2C3E50; /* Dark Blue */
    --page-app-download-desktop-client-text-light: #FFFFFF;
    --page-app-download-desktop-client-text-dark: #2C3E50; /* Dark Blue for text on light backgrounds */
    --page-app-download-desktop-client-background-light: #F8F8F8;
    --page-app-download-desktop-client-border-color: #E0E0E0;
    --page-app-download-desktop-client-hover-gold: #b39700;
    --page-app-download-desktop-client-hover-blue: #1a2938;
}

.page-app-download-desktop-client {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-app-download-desktop-client-text-dark);
    background-color: var(--page-app-download-desktop-client-background-light);
}

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

.page-app-download-desktop-client__hero {
    background: linear-gradient(135deg, var(--page-app-download-desktop-client-primary-color) 0%, var(--page-app-download-desktop-client-secondary-color) 100%);
    color: var(--page-app-download-desktop-client-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-app-download-desktop-client__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--page-app-download-desktop-client-text-light); /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-desktop-client__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: var(--page-app-download-desktop-client-text-light); /* Ensure high contrast */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-desktop-client__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.page-app-download-desktop-client__hero-image:hover {
    transform: translateY(-5px);
}

.page-app-download-desktop-client__section {
    padding: 60px 0;
    background-color: var(--page-app-download-desktop-client-background-light);
}

.page-app-download-desktop-client__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-app-download-desktop-client__section-title {
    font-size: 2.5em;
    color: var(--page-app-download-desktop-client-secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-app-download-desktop-client__button--primary {
    background-color: var(--page-app-download-desktop-client-primary-color);
    color: var(--page-app-download-desktop-client-secondary-color); /* Dark text on gold */
    border: 2px solid var(--page-app-download-desktop-client-primary-color);
}

.page-app-download-desktop-client__button--primary:hover {
    background-color: var(--page-app-download-desktop-client-hover-gold);
    transform: translateY(-3px);
}

.page-app-download-desktop-client__button--secondary {
    background-color: var(--page-app-download-desktop-client-secondary-color);
    color: var(--page-app-download-desktop-client-text-light); /* Light text on dark blue */
    border: 2px solid var(--page-app-download-desktop-client-secondary-color);
}

.page-app-download-desktop-client__button--secondary:hover {
    background-color: var(--page-app-download-desktop-client-hover-blue);
    transform: translateY(-3px);
}

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

.page-app-download-desktop-client__advantage-item {
    background-color: var(--page-app-download-desktop-client-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-app-download-desktop-client__advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-app-download-desktop-client__advantage-title {
    font-size: 1.5em;
    color: var(--page-app-download-desktop-client-secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-download-desktop-client__advantage-item p {
    color: #666;
    font-size: 0.95em;
}

.page-app-download-desktop-client__steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-app-download-desktop-client__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--page-app-download-desktop-client-text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-app-download-desktop-client__step-number {
    background-color: var(--page-app-download-desktop-client-primary-color);
    color: var(--page-app-download-desktop-client-secondary-color); /* Dark text on gold */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-desktop-client__step-title {
    font-size: 1.8em;
    color: var(--page-app-download-desktop-client-secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-download-desktop-client__step-item p {
    color: #444;
    font-size: 1.05em;
    max-width: 700px;
    margin-bottom: 25px;
}

.page-app-download-desktop-client__step-image {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.page-app-download-desktop-client__system-requirements {
    background-color: var(--page-app-download-desktop-client-secondary-color);
    color: var(--page-app-download-desktop-client-text-light);
    padding: 60px 0;
    text-align: center;
}

.page-app-download-desktop-client__system-requirements .page-app-download-desktop-client__section-title,
.page-app-download-desktop-client__system-requirements .page-app-download-desktop-client__section-description {
    color: var(--page-app-download-desktop-client-text-light); /* Ensure high contrast */
}

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

.page-app-download-desktop-client__requirement-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-desktop-client__requirement-card h3 {
    font-size: 1.4em;
    color: var(--page-app-download-desktop-client-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-download-desktop-client__requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-app-download-desktop-client__requirement-card li {
    margin-bottom: 8px;
    font-size: 1em;
    color: var(--page-app-download-desktop-client-text-light); /* Ensure high contrast */
}

.page-app-download-desktop-client__system-image {
    max-width: 70%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-app-download-desktop-client__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-desktop-client__faq-item {
    background-color: var(--page-app-download-desktop-client-text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--page-app-download-desktop-client-primary-color);
    transition: all 0.3s ease;
}

.page-app-download-desktop-client__faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-desktop-client__faq-question {
    font-size: 1.25em;
    color: var(--page-app-download-desktop-client-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-app-download-desktop-client__faq-answer {
    font-size: 1em;
    color: #555;
    padding-left: 10px;
    border-left: 2px solid var(--page-app-download-desktop-client-border-color);
}

.page-app-download-desktop-client__faq-image {
    max-width: 60%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-app-download-desktop-client__cta {
    background: var(--page-app-download-desktop-client-primary-color);
    color: var(--page-app-download-desktop-client-secondary-color); /* Dark text on gold */
    padding: 70px 0;
    text-align: center;
}

.page-app-download-desktop-client__cta-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--page-app-download-desktop-client-secondary-color); /* Dark text on gold */
}

.page-app-download-desktop-client__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #444; /* Slightly lighter dark text for contrast */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download-desktop-client__hero-title {
        font-size: 2.5em;
    }
    .page-app-download-desktop-client__hero-subtitle {
        font-size: 1.2em;
    }
    .page-app-download-desktop-client__section-title {
        font-size: 2em;
    }
    .page-app-download-desktop-client__advantage-title {
        font-size: 1.3em;
    }
    .page-app-download-desktop-client__step-title {
        font-size: 1.5em;
    }
    .page-app-download-desktop-client__system-image,
    .page-app-download-desktop-client__faq-image {
        max-width: 80%;
    }
    .page-app-download-desktop-client__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-app-download-desktop-client__hero {
        padding: 60px 0;
    }
    .page-app-download-desktop-client__hero-title {
        font-size: 2em;
    }
    .page-app-download-desktop-client__hero-subtitle {
        font-size: 1em;
    }
    .page-app-download-desktop-client__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-app-download-desktop-client__section {
        padding: 40px 0;
    }
    .page-app-download-desktop-client__section-title {
        font-size: 1.8em;
    }
    .page-app-download-desktop-client__grid {
        grid-template-columns: 1fr;
    }
    .page-app-download-desktop-client__step-image {
        max-width: 100%;
    }
    .page-app-download-desktop-client__system-image,
    .page-app-download-desktop-client__faq-image {
        max-width: 95%;
    }
    .page-app-download-desktop-client__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-app-download-desktop-client__hero {
        padding: 40px 0;
    }
    .page-app-download-desktop-client__hero-title {
        font-size: 1.8em;
    }
    .page-app-download-desktop-client__hero-subtitle {
        font-size: 0.9em;
    }
    .page-app-download-desktop-client__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-app-download-desktop-client__section-title {
        font-size: 1.5em;
    }
    .page-app-download-desktop-client__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-app-download-desktop-client__step-title {
        font-size: 1.3em;
    }
    .page-app-download-desktop-client__cta-title {
        font-size: 1.8em;
    }
}