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

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

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

.page-download-center-system-requirements__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-download-center-system-requirements__section:last-of-type {
    border-bottom: none;
}

.page-download-center-system-requirements__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-system-requirements__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* Hero Section */
.page-download-center-system-requirements__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-system-requirements__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
}

.page-download-center-system-requirements__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-download-center-system-requirements__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0f2ff;
}

.page-download-center-system-requirements__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-download-center-system-requirements__button--primary {
    background-color: #ffc107; /* Secondary color */
    color: #000; /* High contrast text */
}

.page-download-center-system-requirements__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-system-requirements__button--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-download-center-system-requirements__button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-system-requirements__button--tertiary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-download-center-system-requirements__button--tertiary:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* General Requirements & Desktop Requirements List */
.page-download-center-system-requirements__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-download-center-system-requirements__list li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.page-download-center-system-requirements__list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-download-center-system-requirements__list-title {
    color: #007bff; /* Primary color */
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-download-center-system-requirements__list li p {
    color: #444;
    font-size: 1em;
}

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

.page-download-center-system-requirements__platform-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-download-center-system-requirements__platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-download-center-system-requirements__platform-title {
    font-size: 1.8em;
    color: #007bff; /* Primary color */
    margin-bottom: 15px;
}

.page-download-center-system-requirements__platform-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-download-center-system-requirements__platform-item ul {
    text-align: left;
    list-style: disc inside;
    color: #444;
    margin-bottom: 25px;
}

.page-download-center-system-requirements__platform-item ul li strong {
    color: #333;
}

/* Benefits Section */
.page-download-center-system-requirements__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center-system-requirements__benefit-item {
    background-color: #fff;
    border-left: 5px solid #ffc107; /* Secondary color for emphasis */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-download-center-system-requirements__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-download-center-system-requirements__benefit-title {
    font-size: 1.6em;
    color: #007bff; /* Primary color */
    margin-top: 0;
    margin-bottom: 15px;
}

.page-download-center-system-requirements__benefit-item p {
    color: #555;
}

/* Troubleshooting & Conclusion */
.page-download-center-system-requirements__cta-text {
    font-size: 1.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.page-download-center-system-requirements__buttons-group {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Image Styling */
.page-download-center-system-requirements__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

    .page-download-center-system-requirements__hero-description,
    .page-download-center-system-requirements__section-intro {
        font-size: 1em;
    }

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

    .page-download-center-system-requirements__platform-grid,
    .page-download-center-system-requirements__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-download-center-system-requirements__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-system-requirements__buttons-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-download-center-system-requirements__hero {
        padding: 60px 0;
    }

    .page-download-center-system-requirements__hero-title {
        font-size: 2em;
    }

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

    .page-download-center-system-requirements__container {
        padding: 0 15px;
    }
}