/* style/download-center-mobile-pc-comparison.css */
.page-download-center-mobile-pc-comparison {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text on dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-download-center-mobile-pc-comparison__hero {
    background: linear-gradient(135deg, #0A192F 0%, #3a4b63 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

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

.page-download-center-mobile-pc-comparison__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f5e6d0;
}

.page-download-center-mobile-pc-comparison__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.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-download-center-mobile-pc-comparison__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

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

.page-download-center-mobile-pc-comparison__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-download-center-mobile-pc-comparison__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-download-center-mobile-pc-comparison__btn--accent {
    background-color: #007bff; /* A complementary blue for accent */
    color: #FFFFFF;
    border: 2px solid #007bff;
}

.page-download-center-mobile-pc-comparison__btn--accent:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-download-center-mobile-pc-comparison__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-download-center-mobile-pc-comparison__section:last-of-type {
    border-bottom: none;
}

.page-download-center-mobile-pc-comparison__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-download-center-mobile-pc-comparison__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-download-center-mobile-pc-comparison__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-download-center-mobile-pc-comparison__grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-download-center-mobile-pc-comparison__grid-layout--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-download-center-mobile-pc-comparison__content-block p {
    margin-bottom: 15px;
    color: #f5e6d0;
}

.page-download-center-mobile-pc-comparison__list,
.page-download-center-mobile-pc-comparison__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-download-center-mobile-pc-comparison__numbered-list {
    list-style-type: decimal;
}

.page-download-center-mobile-pc-comparison__list li,
.page-download-center-mobile-pc-comparison__numbered-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-download-center-mobile-pc-comparison__image-wrapper {
    text-align: center;
}

.page-download-center-mobile-pc-comparison__image-wrapper--center {
    grid-column: 1 / -1;
}

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

.page-download-center-mobile-pc-comparison__image--large {
    max-width: 80%;
}

.page-download-center-mobile-pc-comparison__table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

.page-download-center-mobile-pc-comparison__comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1a2a40; /* Slightly lighter dark blue for table */
    border-radius: 8px;
    overflow: hidden;
}

.page-download-center-mobile-pc-comparison__comparison-table th,
.page-download-center-mobile-pc-comparison__comparison-table td {
    border: 1px solid #324a6b;
    padding: 15px;
    text-align: left;
    color: #f5e6d0;
}

.page-download-center-mobile-pc-comparison__comparison-table th {
    background-color: #FFD700;
    color: #0A192F;
    font-weight: bold;
    font-size: 1.1em;
}

.page-download-center-mobile-pc-comparison__comparison-table tr:nth-child(even) {
    background-color: #122136;
}

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

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

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

.page-download-center-mobile-pc-comparison__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-download-center-mobile-pc-comparison__feature-item p {
    color: #e0e0e0;
}

.page-download-center-mobile-pc-comparison__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-download-center-mobile-pc-comparison .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-center-mobile-pc-comparison__grid-layout {
        grid-template-columns: 1fr;
    }

    .page-download-center-mobile-pc-comparison__grid-layout--reverse {
        grid-template-columns: 1fr;
    }

    .page-download-center-mobile-pc-comparison__image-wrapper--center {
        order: -1; /* Move image above content on smaller screens */
    }

    .page-download-center-mobile-pc-comparison__hero-title {
        font-size: 2.8em;
    }

    .page-download-center-mobile-pc-comparison__hero-subtitle {
        font-size: 1.2em;
    }

    .page-download-center-mobile-pc-comparison__section-title {
        font-size: 2.2em;
    }

    .page-download-center-mobile-pc-comparison__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-download-center-mobile-pc-comparison__hero-title {
        font-size: 2.2em;
    }

    .page-download-center-mobile-pc-comparison__hero-subtitle {
        font-size: 1em;
    }

    .page-download-center-mobile-pc-comparison__section-title {
        font-size: 1.8em;
    }

    .page-download-center-mobile-pc-comparison__subsection-title {
        font-size: 1.4em;
    }

    .page-download-center-mobile-pc-comparison__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-mobile-pc-comparison__table-responsive {
        margin: 0 -20px;
    }

    .page-download-center-mobile-pc-comparison__comparison-table th,
    .page-download-center-mobile-pc-comparison__comparison-table td {
        padding: 10px;
        font-size: 0.9em;
    }

    .page-download-center-mobile-pc-comparison__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-download-center-mobile-pc-comparison__hero-title {
        font-size: 1.8em;
    }

    .page-download-center-mobile-pc-comparison__hero-subtitle {
        font-size: 0.9em;
    }

    .page-download-center-mobile-pc-comparison__section-title {
        font-size: 1.6em;
    }

    .page-download-center-mobile-pc-comparison__hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-download-center-mobile-pc-comparison__btn {
        width: 90%;
        margin: 5px 0;
    }
}