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

/* Base styles for the page */
.page-download-center-system-requirements {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-download-center-system-requirements__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-system-requirements__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-system-requirements__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-download-center-system-requirements__hero-image-wrapper {
    margin-top: 30px;
}

.page-download-center-system-requirements__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-download-center-system-requirements__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-download-center-system-requirements__section:nth-of-type(even) {
    background-color: #f0f4f8;
}

.page-download-center-system-requirements__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

/* Grid Layout for Cards */
.page-download-center-system-requirements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-download-center-system-requirements__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-system-requirements__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-download-center-system-requirements__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

/* Lists */
.page-download-center-system-requirements__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-download-center-system-requirements__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-download-center-system-requirements__list li::before {
    content: '•';
    color: #FFD700; /* Gold bullet point */
    font-weight: bold;
    display: inline-block;
    width: 20px;
    margin-left: -25px;
    position: absolute;
    left: 0;
    top: 0;
}

.page-download-center-system-requirements__list li strong {
    color: #003366;
}

.page-download-center-system-requirements__list--large-icon li::before {
    content: '\2713'; /* Checkmark */
    color: #008000; /* Green checkmark */
    font-size: 1.2em;
    top: -2px;
}

.page-download-center-system-requirements__list--checkmark li::before {
    content: '\2713'; /* Checkmark */
    color: #008000; /* Green checkmark */
    font-size: 1.2em;
    top: -2px;
}

.page-download-center-system-requirements__list-item-title {
    font-size: 1.2em;
    color: #003366;
    margin-bottom: 5px;
}

/* Image within Cards */
.page-download-center-system-requirements__image-wrapper {
    margin-top: 20px;
    text-align: center;
}

.page-download-center-system-requirements__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Call to Action (CTA) Section */
.page-download-center-system-requirements__cta {
    background-color: #003366; /* Dark blue background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-download-center-system-requirements__cta .page-download-center-system-requirements__section-title {
    color: #FFD700;
}

.page-download-center-system-requirements__cta .page-download-center-system-requirements__section-title::after {
    background-color: #ffffff;
}

.page-download-center-system-requirements__cta-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto 30px auto;
    color: #e0e0e0;
}

.page-download-center-system-requirements__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-download-center-system-requirements__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.page-download-center-system-requirements__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366;
}

.page-download-center-system-requirements__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-download-center-system-requirements__button--secondary {
    background-color: #CC0000; /* Red for emphasis */
    color: #ffffff;
}

.page-download-center-system-requirements__button--secondary:hover {
    background-color: #a30000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-download-center-system-requirements__button--tertiary {
    background-color: #4d7094; /* Lighter blue */
    color: #ffffff;
    border: 1px solid #4d7094;
}

.page-download-center-system-requirements__button--tertiary:hover {
    background-color: #3b5a7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-download-center-system-requirements__cta-image-wrapper {
    margin-top: 50px;
}

.page-download-center-system-requirements__cta-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-download-center-system-requirements__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-system-requirements__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.page-download-center-system-requirements__faq-answer {
    color: #555;
    line-height: 1.7;
}

/* Keyword highlighting */
.page-download-center-system-requirements .highlight-keyword {
    color: #003366; /* Dark blue for keyword */
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-download-center-system-requirements__title {
        font-size: 2em;
    }

    .page-download-center-system-requirements__section-title {
        font-size: 1.8em;
    }

    .page-download-center-system-requirements__subtitle {
        font-size: 1em;
    }

    .page-download-center-system-requirements__grid {
        grid-template-columns: 1fr;
    }

    .page-download-center-system-requirements__card {
        padding: 20px;
    }

    .page-download-center-system-requirements__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .page-download-center-system-requirements__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-download-center-system-requirements__title {
        font-size: 1.8em;
    }

    .page-download-center-system-requirements__section-title {
        font-size: 1.5em;
    }

    .page-download-center-system-requirements__hero,
    .page-download-center-system-requirements__cta {
        padding: 50px 0;
    }

    .page-download-center-system-requirements__section {
        padding: 40px 0;
    }

    .page-download-center-system-requirements__button {
        width: 100%;
        box-sizing: border-box;
    }
}