.page-download {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-left: 15px; /* Minimum 12px padding */
    padding-right: 15px;
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main color */
}

/* Small top padding for the first section, relying on body for header offset */
.page-download__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above text on mobile */
    align-items: center;
    max-width: 1200px; /* Max width for content */
    margin: 0 auto;
    text-align: center;
}

.page-download__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 20px;
}

.page-download__hero-image {
    width: 100%;
    height: auto; /* Prevent stretching */
    display: block;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 9; /* Aspect ratio for hero image */
}

.page-download__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-download__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    /* No fixed font-size, rely on clamp if needed, otherwise default browser H1 */
    /* clamp(1.1rem, 4.5vw, 1.75rem) for mobile, but general rule is no fixed large font-size */
}

.page-download__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-download__download-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 15px;
}

.page-download__button {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px; /* Ensure buttons are not too small */
    box-sizing: border-box;
}

.page-download__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
}

.page-download__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-download__button--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-download__button--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.1);
}

.page-download__button--small {
    padding: 8px 15px;
    font-size: 14px;
    min-width: auto;
}

.page-download__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem); /* Responsive font size for H2 */
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-download__features-section,
.page-download__install-guide-section,
.page-download__system-requirements-section,
.page-download__faq-section,
.page-download__cta-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
}

.page-download__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-download__feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-download__feature-card:hover {
    transform: translateY(-5px);
}

.page-download__feature-icon {
    width: 250px; /* Adjusting to be larger than 200px, but still "icon-like" */
    height: 200px; /* Ensure minimum 200px height */
    object-fit: contain; /* Use contain for icons to fit */
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
}

.page-download__feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.page-download__feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-download__platform-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.page-download__tab-button {
    background-color: #D6E2FF; /* Border color as a light background */
    color: #2F6BFF;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-download__tab-button:hover {
    background-color: #A5C4FF; /* Glow color on hover */
}

.page-download__tab-button--active {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
}

.page-download__guide-content {
    display: none;
    flex-direction: column;
    gap: 30px;
}

.page-download__guide-content--active {
    display: flex;
}

.page-download__guide-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column; /* Default for mobile */
    align-items: center;
    text-align: center;
    gap: 20px;
}

.page-download__guide-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3; /* Example aspect ratio for guide images */
    min-width: 200px; /* Ensure min size */
    min-height: 200px;
}

.page-download__guide-text {
    flex: 1;
}

.page-download__guide-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.page-download__guide-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 15px;
}

.page-download__requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-download__requirement-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-download__requirement-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.page-download__requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-download__requirement-card li {
    font-size: 15px;
    color: #1F2D3D;
    padding: 8px 0;
    border-bottom: 1px dashed #D6E2FF;
    display: flex;
    align-items: center;
}

.page-download__requirement-card li:last-child {
    border-bottom: none;
}

.page-download__requirement-card li::before {
    content: "✅"; /* Checkmark for list items */
    margin-right: 10px;
    color: #2F6BFF;
}

.page-download__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-download__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF;
}

.page-download__faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's collapsible */
}

.page-download__faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: #1F2D3D;
    display: none; /* Hidden by default, will be toggled by JS */
}

.page-download__faq-question.active + .page-download__faq-answer {
    display: block;
}

.page-download__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .page-download__hero-section {
        padding-top: 40px; /* More padding on desktop */
        padding-bottom: 60px;
    }

    .page-download__main-title {
        font-size: clamp(2.5rem, 4vw, 3.2rem); /* H1 size for desktop */
    }

    .page-download__features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-download__guide-item {
        flex-direction: row; /* Horizontal layout for guide items */
        text-align: left;
    }

    .page-download__guide-item--reverse {
        flex-direction: row-reverse;
    }

    .page-download__guide-text {
        padding-left: 30px;
        padding-right: 30px;
    }

    .page-download__guide-item--reverse .page-download__guide-text {
        padding-left: 30px;
        padding-right: 0;
    }

    .page-download__guide-image {
        max-width: 45%; /* Image takes less width on desktop */
        min-width: 300px;
    }

    .page-download__requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .page-download__download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-download__button {
        width: 100%;
        max-width: 250px; /* Limit button width on small screens */
    }

    .page-download__section-title {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-download__features-grid,
    .page-download__requirements-grid {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .page-download__guide-item {
        padding: 20px;
    }
    
    .page-download__guide-item p {
        text-align: left; /* Adjust text alignment for mobile guides */
    }

    /* Ensure all images in content area are responsive */
    .page-download img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all images in .page-download content area do not fall below 200px width/height */
.page-download__features-section img,
.page-download__install-guide-section img,
.page-download__system-requirements-section img {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow image to scale down but not below min-width */
    height: auto;
}