/* style/download.css */

/* Base styles for the download page */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Ensure consistency, though shared.css controls body */
}

/* Header offset for fixed header */
.page-download__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset */
}

/* General container for content sections */
.page-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-download__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Hero Section */
.page-download__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a; /* Dark background */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-download__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
    overflow: hidden;
}

.page-download__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-download__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-download__main-title {
    font-size: 3.5em;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-download__intro-text {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 40px;
}

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

/* Buttons */
.page-download__btn-primary,
.page-download__btn-secondary,
.page-download__step-button,
.page-download__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    justify-content: center;
}

.page-download__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-download__btn-primary:hover {
    background-color: #1a8cc7;
    border-color: #1a8cc7;
}

.page-download__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-download__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1a8cc7;
    border-color: #1a8cc7;
}

.page-download__btn-primary img,
.page-download__btn-secondary img {
    
    
    object-fit: contain;
    display: inline-block; /* Ensure icons are displayed correctly */
    vertical-align: middle;
    min-width: unset; /* Override general image min-width */
    min-height: unset; /* Override general image min-height */
}

/* Dark section for contrast */
.page-download__dark-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-download__dark-section .page-download__section-description {
    color: #f0f0f0;
}

/* Feature Grid */
.page-download__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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