/* style/download-center-pc-client.css */
.page-download-center-pc-client {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-download-center-pc-client__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-center-pc-client__section:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.page-download-center-pc-client__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-download-center-pc-client__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E3B505;
    border-radius: 2px;
}

.page-download-center-pc-client__section-subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-pc-client__hero-section {
    background: linear-gradient(135deg, #0A2463, #3a5c9f);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-download-center-pc-client__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #E3B505;
}

.page-download-center-pc-client__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-pc-client__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.page-download-center-pc-client__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-download-center-pc-client__btn--primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-download-center-pc-client__btn--primary:hover {
    background-color: #f5db9c;
    transform: translateY(-3px);
}

.page-download-center-pc-client__btn--secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
}

.page-download-center-pc-client__btn--secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-download-center-pc-client__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-download-center-pc-client__hero-image-wrapper {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

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

.page-download-center-pc-client__advantages-grid, .page-download-center-pc-client__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center-pc-client__advantage-item, .page-download-center-pc-client__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-pc-client__advantage-item:hover, .page-download-center-pc-client__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-pc-client__advantage-icon, .page-download-center-pc-client__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-download-center-pc-client__advantage-title, .page-download-center-pc-client__feature-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-download-center-pc-client__advantage-description, .page-download-center-pc-client__feature-description {
    color: #666;
    font-size: 1em;
}

.page-download-center-pc-client__guide-section {
    background-color: #f0f4f7;
}

.page-download-center-pc-client__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-download-center-pc-client__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 60px;
}

.page-download-center-pc-client__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: #E3B505;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__step-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-download-center-pc-client__step-description {
    color: #666;
}

.page-download-center-pc-client__text-link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-download-center-pc-client__text-link:hover {
    color: #E3B505;
}

.page-download-center-pc-client__guide-image-wrapper {
    margin-top: 60px;
}

.page-download-center-pc-client__guide-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__requirements-list {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

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

.page-download-center-pc-client__requirements-list li {
    background-color: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.page-download-center-pc-client__requirements-list li strong {
    color: #0A2463;
    min-width: 120px;
}

.page-download-center-pc-client__requirements-image-wrapper {
    margin-top: 40px;
}

.page-download-center-pc-client__requirements-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-download-center-pc-client__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-download-center-pc-client__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    padding: 20px 30px;
    cursor: pointer;
    margin: 0;
    background-color: #f0f4f7;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center-pc-client__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-download-center-pc-client__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center-pc-client__faq-answer {
    padding: 0 30px;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-download-center-pc-client__faq-answer.active {
    max-height: 500px; /* Increased for longer answers */
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-download-center-pc-client__cta-final {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-download-center-pc-client__cta-final .page-download-center-pc-client__section-title {
    color: #E3B505;
}

.page-download-center-pc-client__cta-final .page-download-center-pc-client__section-subtitle {
    color: #f0f0f0;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-pc-client__hero-title {
        font-size: 2.8em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 2em;
    }
    .page-download-center-pc-client__advantages-grid, .page-download-center-pc-client__features-grid, .page-download-center-pc-client__guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-download-center-pc-client__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-pc-client__hero-description {
        font-size: 1.1em;
    }
    .page-download-center-pc-client__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-pc-client__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-download-center-pc-client__section {
        padding: 40px 0;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__guide-image, .page-download-center-pc-client__requirements-image {
        max-width: 100%;
    }
    .page-download-center-pc-client__requirements-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-download-center-pc-client__requirements-list li strong {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .page-download-center-pc-client__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__hero-description {
        font-size: 1em;
    }
    .page-download-center-pc-client__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.5em;
    }
    .page-download-center-pc-client__section-subtitle {
        font-size: 1em;
    }
    .page-download-center-pc-client__advantage-item, .page-download-center-pc-client__feature-item, .page-download-center-pc-client__step-item {
        padding: 20px;
    }
    .page-download-center-pc-client__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        top: 15px;
        left: 20px;
    }
    .page-download-center-pc-client__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-download-center-pc-client__faq-answer {
        padding: 0 20px 15px 20px;
    }
}