/* 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: transparent; /* Body background is handled by shared.css */
}

.page-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-download__section-title {
    font-size: 2.5em;
    color: #FFFFFF; /* White for titles on dark background */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download__section-description {
    font-size: 1.1em;
    color: #f0f0f0; /* Slightly off-white for descriptions */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    padding: 80px 0;
    padding-top: calc(80px + var(--header-offset, 120px)); /* Ensure space for fixed header */
    background: linear-gradient(135deg, #017439, #0a0a0a); /* Blend with body background */
    color: #ffffff;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.page-download__hero-section .page-download__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-download__hero-content {
    flex: 1;
    text-align: left;
}

.page-download__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFFF00; /* Use custom color for prominent title */
}

.page-download__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-download__hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-download__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-download__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* Video Section */
.page-download__video-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Slightly lighter dark background for this section */
    text-align: center;
}

.page-download__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 30px auto;
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-download__video-link {
    display: block;
    line-height: 0; /* Remove extra space below video */
    cursor: pointer;
}

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

.page-download__video-caption {
    font-size: 0.95em;
    color: #cccccc;
    margin-top: 15px;
}

/* Benefits Section */
.page-download__benefits-section {
    padding: 80px 0;
    background-color: #017439; /* Primary brand color for a dark section */
}

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

.page-download__benefit-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on brand color */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-download__benefit-card:hover {
    transform: translateY(-10px);
}

.page-download__benefit-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-download__benefit-title {
    font-size: 1.5em;
    color: #FFFF00; /* Highlighted title for benefits */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download__benefit-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Guide Section */
.page-download__guide-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.page-download__guide-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
    flex-wrap: wrap;
}

.page-download__tab-button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
}

.page-download__tab-button:hover {
    background-color: #017439;
}