/* style/download-center-pc-client.css */

:root {
    --page-download-center-pc-client-primary-color: #003366;
    --page-download-center-pc-client-secondary-color: #FFCC00;
    --page-download-center-pc-client-text-dark: #333333;
    --page-download-center-pc-client-text-light: #ffffff;
    --page-download-center-pc-client-background-light: #f5f5f5;
    --page-download-center-pc-client-background-dark: #002244;
    --page-download-center-pc-client-accent-color: #e6b800; /* Slightly darker secondary for contrast */
    --page-download-center-pc-client-border-color: #cccccc;
}

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

.page-download-center-pc-client__hero {
    background: linear-gradient(135deg, var(--page-download-center-pc-client-primary-color) 0%, #1a4d80 100%);
    color: var(--page-download-center-pc-client-text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-pc-client__hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-download-center-pc-client__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-download-center-pc-client-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-download-center-pc-client__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.4;
}

.page-download-center-pc-client__download-button {
    display: inline-block;
    background-color: var(--page-download-center-pc-client-secondary-color);
    color: var(--page-download-center-pc-client-primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-download-center-pc-client__download-button:hover {
    background-color: var(--page-download-center-pc-client-accent-color);
    transform: translateY(-3px);
}

.page-download-center-pc-client__download-button.--secondary {
    background-color: var(--page-download-center-pc-client-primary-color);
    color: var(--page-download-center-pc-client-secondary-color);
    border: 2px solid var(--page-download-center-pc-client-secondary-color);
}

.page-download-center-pc-client__download-button.--secondary:hover {
    background-color: var(--page-download-center-pc-client-background-dark);
    color: var(--page-download-center-pc-client-secondary-color);
    border-color: var(--page-download-center-pc-client-accent-color);
}

.page-download-center-pc-client__hero-note {
    font-size: 1em;
    margin-top: 25px;
    opacity: 0.8;
}

.page-download-center-pc-client__hero-image-wrapper {
    margin-top: 40px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.page-download-center-pc-client__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client__section-title {
    font-size: 2.8em;
    color: var(--page-download-center-pc-client-primary-color);
    text-align: center;
    margin-bottom: 60px;
    margin-top: 80px;
    position: relative;
    padding-bottom: 15px;
}

.page-download-center-pc-client__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--page-download-center-pc-client-secondary-color);
    border-radius: 3px;
}

.page-download-center-pc-client__why-download,
.page-download-center-pc-client__installation-guide,
.page-download-center-pc-client__system-requirements,
.page-download-center-pc-client__faq,
.page-download-center-pc-client__call-to-action {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-download-center-pc-client__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-download-center-pc-client__feature-item {
    background-color: var(--page-download-center-pc-client-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-download-center-pc-client__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-download-center-pc-client__feature-title {
    font-size: 1.8em;
    color: var(--page-download-center-pc-client-primary-color);
    margin-bottom: 15px;
}

.page-download-center-pc-client__feature-description {
    font-size: 1.1em;
    color: #555555;
}

.page-download-center-pc-client__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-download-center-pc-client__step-item {
    display: flex;
    align-items: center;
    background-color: var(--page-download-center-pc-client-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    flex-wrap: wrap;
}

.page-download-center-pc-client__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--page-download-center-pc-client-secondary-color);
    margin-right: 30px;
    flex-shrink: 0;
    line-height: 1;
}

.page-download-center-pc-client__step-title {
    font-size: 2em;
    color: var(--page-download-center-pc-client-primary-color);
    margin-bottom: 10px;
    flex-basis: calc(100% - 110px);
    text-align: left;
}

.page-download-center-pc-client__step-description {
    font-size: 1.1em;
    color: #555555;
    flex-basis: calc(100% - 110px);
    text-align: left;
}

.page-download-center-pc-client__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    order: 3; /* Move image below text on small screens */
}

.page-download-center-pc-client__step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.page-download-center-pc-client__step-item:nth-child(even) .page-download-center-pc-client__step-number {
    margin-left: 30px;
    margin-right: 0;
}

.page-download-center-pc-client__step-item:nth-child(even) .page-download-center-pc-client__step-title,
.page-download-center-pc-client__step-item:nth-child(even) .page-download-center-pc-client__step-description {
    text-align: right;
}

.page-download-center-pc-client__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--page-download-center-pc-client-primary-color);
    color: var(--page-download-center-pc-client-text-light);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__cta-bottom p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.page-download-center-pc-client__system-requirements {
    background-color: var(--page-download-center-pc-client-background-dark);
    color: var(--page-download-center-pc-client-text-light);
    padding: 80px 20px;
}

.page-download-center-pc-client__system-requirements .page-download-center-pc-client__section-title {
    color: var(--page-download-center-pc-client-secondary-color);
}

.page-download-center-pc-client__system-requirements .page-download-center-pc-client__section-title::after {
    background-color: var(--page-download-center-pc-client-text-light);
}

.page-download-center-pc-client__requirements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-download-center-pc-client__requirements-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-download-center-pc-client__requirements-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-download-center-pc-client__requirements-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-download-center-pc-client__requirements-text li {
    background-color: #0a3d66; /* Slightly lighter blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__requirements-text li strong {
    color: var(--page-download-center-pc-client-secondary-color);
    margin-right: 10px;
}

.page-download-center-pc-client__requirements-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.page-download-center-pc-client__requirements-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__faq {
    background-color: var(--page-download-center-pc-client-background-light);
}

.page-download-center-pc-client__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-download-center-pc-client__faq-item {
    background-color: var(--page-download-center-pc-client-text-light);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--page-download-center-pc-client-primary-color);
}

.page-download-center-pc-client__faq-question {
    font-size: 1.6em;
    color: var(--page-download-center-pc-client-primary-color);
    margin-bottom: 10px;
}

.page-download-center-pc-client__faq-answer {
    font-size: 1.1em;
    color: #666666;
}

.page-download-center-pc-client__call-to-action {
    background: linear-gradient(90deg, var(--page-download-center-pc-client-primary-color) 0%, var(--page-download-center-pc-client-background-dark) 100%);
    color: var(--page-download-center-pc-client-text-light);
    text-align: center;
    padding: 80px 20px;
    border-radius: 15px;
    margin-top: 80px;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-download-center-pc-client__cta-image {
    max-width: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.6));
}

.page-download-center-pc-client__cta-content {
    max-width: 800px;
}

.page-download-center-pc-client__cta-title {
    font-size: 3em;
    color: var(--page-download-center-pc-client-secondary-color);
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-download-center-pc-client__cta-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-download-center-pc-client__login-button {
    display: inline-block;
    background-color: transparent;
    color: var(--page-download-center-pc-client-secondary-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--page-download-center-pc-client-secondary-color);
    cursor: pointer;
}

.page-download-center-pc-client__login-button:hover {
    background-color: var(--page-download-center-pc-client-secondary-color);
    color: var(--page-download-center-pc-client-primary-color);
    transform: translateY(-3px);
    border-color: var(--page-download-center-pc-client-accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-download-center-pc-client__hero-title {
        font-size: 2.8em;
    }
    .page-download-center-pc-client__hero-subtitle {
        font-size: 1.3em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 2.2em;
    }
    .page-download-center-pc-client__step-item {
        flex-direction: column;
        text-align: center;
    }
    .page-download-center-pc-client__step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-download-center-pc-client__step-title,
    .page-download-center-pc-client__step-description {
        text-align: center;
        flex-basis: 100%;
    }
    .page-download-center-pc-client__step-item:nth-child(even) {
        flex-direction: column;
    }
    .page-download-center-pc-client__step-item:nth-child(even) .page-download-center-pc-client__step-number {
        margin-left: 0;
    }
    .page-download-center-pc-client__step-item:nth-child(even) .page-download-center-pc-client__step-title,
    .page-download-center-pc-client__step-item:nth-child(even) .page-download-center-pc-client__step-description {
        text-align: center;
    }
    .page-download-center-pc-client__requirements-content {
        flex-direction: column;
    }
    .page-download-center-pc-client__cta-title {
        font-size: 2.5em;
    }
    .page-download-center-pc-client__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-download-center-pc-client__hero {
        padding: 60px 15px;
    }
    .page-download-center-pc-client__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-pc-client__hero-subtitle {
        font-size: 1.1em;
    }
    .page-download-center-pc-client__download-button,
    .page-download-center-pc-client__login-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-download-center-pc-client__why-download,
    .page-download-center-pc-client__installation-guide,
    .page-download-center-pc-client__system-requirements,
    .page-download-center-pc-client__faq,
    .page-download-center-pc-client__call-to-action {
        padding: 40px 15px;
    }
    .page-download-center-pc-client__feature-title {
        font-size: 1.5em;
    }
    .page-download-center-pc-client__feature-description,
    .page-download-center-pc-client__step-description,
    .page-download-center-pc-client__requirements-text p,
    .page-download-center-pc-client__requirements-text li,
    .page-download-center-pc-client__faq-answer {
        font-size: 1em;
    }
    .page-download-center-pc-client__step-number {
        font-size: 2.5em;
    }
    .page-download-center-pc-client__step-title {
        font-size: 1.6em;
    }
    .page-download-center-pc-client__cta-bottom p {
        font-size: 1.2em;
    }
    .page-download-center-pc-client__cta-title {
        font-size: 2em;
    }
    .page-download-center-pc-client__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-download-center-pc-client__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__hero-subtitle {
        font-size: 0.9em;
    }
    .page-download-center-pc-client__download-button,
    .page-download-center-pc-client__login-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        box-sizing: border-box;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.6em;
    }
    .page-download-center-pc-client__cta-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__cta-description {
        font-size: 0.9em;
    }
}