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

.page-download-center-pc-client {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-download-center-pc-client h1, .page-download-center-pc-client h2, .page-download-center-pc-client h3 {
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: center;
}

.page-download-center-pc-client h1 {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.2;
}

.page-download-center-pc-client h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-download-center-pc-client h3 {
    font-size: 1.6em;
    font-weight: 500;
    margin-top: 30px;
    color: #2C3E50;
}

.page-download-center-pc-client p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: center;
}

.page-download-center-pc-client .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-download-center-pc-client .btn-primary {
    background-color: #F39C12;
    color: #fff;
    border: 2px solid #F39C12;
}

.page-download-center-pc-client .btn-primary:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
    transform: translateY(-2px);
}

.page-download-center-pc-client .btn-secondary {
    background-color: transparent;
    color: #2C3E50;
    border: 2px solid #2C3E50;
    margin-left: 15px;
}

.page-download-center-pc-client .btn-secondary:hover {
    background-color: #2C3E50;
    color: #fff;
    transform: translateY(-2px);
}

.page-download-center-pc-client .btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-download-center-pc-client .hero-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-pc-client .hero-section h1 {
    color: #fff;
    margin-bottom: 20px;
}

.page-download-center-pc-client .hero-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
    color: #ecf0f1;
}

.page-download-center-pc-client .hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-download-center-pc-client .hero-image {
    width: 90%;
    max-width: 900px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-download-center-pc-client .benefits-section {
    padding: 60px 0;
    background-color: #fff;
}

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

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

.page-download-center-pc-client .benefit-item:hover {
    transform: translateY(-5px);
}

.page-download-center-pc-client .benefit-item .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download-center-pc-client .benefit-item h3 {
    color: #2C3E50;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-download-center-pc-client .benefit-item p {
    font-size: 1em;
    color: #666;
    text-align: left;
}

/* Installation Section */
.page-download-center-pc-client .installation-section {
    padding: 60px 0;
    background-color: #f2f4f6;
}

.page-download-center-pc-client .installation-section > p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-download-center-pc-client .installation-step {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-download-center-pc-client .installation-step h3 {
    color: #F39C12;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.page-download-center-pc-client .installation-step p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px auto;
    color: #555;
}

.page-download-center-pc-client .installation-step .step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 25px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Requirements Section */
.page-download-center-pc-client .requirements-section {
    padding: 60px 0;
    background-color: #e9ecef;
    text-align: center;
}

.page-download-center-pc-client .requirements-section > p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-download-center-pc-client .system-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

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

.page-download-center-pc-client .system-list li .list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    object-fit: contain;
}

.page-download-center-pc-client .requirements-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-download-center-pc-client .faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-download-center-pc-client .faq-section > h2 {
    margin-bottom: 50px;
}

.page-download-center-pc-client .faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client .faq-question {
    padding: 20px;
    cursor: pointer;
    font-size: 1.3em;
    color: #2C3E50;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

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

.page-download-center-pc-client .faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.page-download-center-pc-client .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.1em;
    color: #555;
    display: none;
    text-align: left;
}

.page-download-center-pc-client .faq-item.active .faq-answer {
    display: block;
}

.page-download-center-pc-client .faq-item .btn-secondary {
    margin-top: 15px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-download-center-pc-client .faq-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-download-center-pc-client .cta-section {
    background: linear-gradient(90deg, #2C3E50 0%, #F39C12 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-download-center-pc-client .cta-section h2 {
    color: #fff;
    margin-bottom: 25px;
}

.page-download-center-pc-client .cta-section p {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
    color: #fefefe;
}

.page-download-center-pc-client .cta-section .btn {
    margin: 0 10px;
    margin-bottom: 20px;
}

.page-download-center-pc-client .cta-section .btn-primary {
    background-color: #fff;
    color: #F39C12;
    border-color: #fff;
}

.page-download-center-pc-client .cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    color: #e08e0b;
    border-color: #f0f0f0;
}

.page-download-center-pc-client .cta-section .btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-download-center-pc-client .cta-section .btn-secondary:hover {
    background-color: #fff;
    color: #2C3E50;
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-pc-client h1 {
        font-size: 2.2em;
    }
    .page-download-center-pc-client h2 {
        font-size: 1.8em;
    }
    .page-download-center-pc-client h3 {
        font-size: 1.4em;
    }
    .page-download-center-pc-client .hero-section {
        padding: 60px 0;
    }
    .page-download-center-pc-client .hero-image {
        margin-top: 30px;
    }
    .page-download-center-pc-client .benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center-pc-client .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-pc-client .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-download-center-pc-client h1 {
        font-size: 1.8em;
    }
    .page-download-center-pc-client h2 {
        font-size: 1.6em;
    }
    .page-download-center-pc-client .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-download-center-pc-client .btn-large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-download-center-pc-client p {
        font-size: 1em;
    }
    .page-download-center-pc-client .hero-section {
        padding: 40px 0;
    }
    .page-download-center-pc-client .hero-image {
        width: 100%;
    }
    .page-download-center-pc-client .installation-step .step-image,
    .page-download-center-pc-client .requirements-image,
    .page-download-center-pc-client .faq-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-download-center-pc-client h1 {
        font-size: 1.5em;
    }
    .page-download-center-pc-client h2 {
        font-size: 1.4em;
    }
    .page-download-center-pc-client h3 {
        font-size: 1.2em;
    }
    .page-download-center-pc-client .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    .page-download-center-pc-client .hero-buttons {
        flex-direction: column;
    }
    .page-download-center-pc-client .cta-section .btn {
        margin: 0 0 15px 0;
    }
}