/* style/download.css */

/* Base styles for the page */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

.page-download__content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-download__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Ensure high contrast */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Hero Section */
.page-download__hero-section {
    position: relative;
    padding: 100px 20px;
    padding-top: calc(100px + var(--header-offset, 120px)); /* Ensure space for fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #017439; /* Brand primary color for hero background */
    color: #ffffff;
    overflow: hidden;
}

.page-download__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-download__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Yellow for prominence */
}

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

.page-download__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-download__btn-primary,
.page-download__btn-secondary {
    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, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-download__btn-primary {
    background-color: #C30808; /* Red for register/login/download */
    color: #FFFF00; /* Yellow for text */
    border: 2px solid #C30808;
}

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

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

.page-download__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

.page-download__large-btn {
    min-width: 250px;
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-download__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 50%;
    max-width: 700px;
    z-index: 1;
    opacity: 0.2;
}

.page-download__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Video Section */
.page-download__video-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background from body */
    color: #ffffff;
    text-align: center;
}

.page-download__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    background-color: #000;
    cursor: pointer;
}

.page-download__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.page-download__video-cta {
    margin-top: 20px;
}


/* Benefits Section */
.page-download__benefits-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text for light background */
}

.page-download__benefits-section .page-download__section-title {
    color: #017439; /* Brand color for title on light background */
}

.page-download__benefits-section .page-download__section-description {
    color: #555555;
}

.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: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    color: #333333;
}

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

.page-download__benefit-icon {
    width: 400px; /* Display size */
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-download__benefit-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

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

.page-download__guide-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-download__guide-title {
    font-size: 1.6em;
    color: #017439;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download__guide-list {
    list-style: decimal;
    text-align: left;
    margin-left: 20px;
    margin-bottom: 25px;
    font-size: 1.05em;
    color: #555555;
    padding-left: 0;
}

.page-download__guide-list li {
    margin-bottom: 10px;
}

.page-download__guide-list strong {
    color: #017439;
}

.page-download__guide-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 25px;
    border-radius: 8px;
    width: 800px; /* Display size */
    height: 600px; /* Display size */
    object-fit: cover;
}

.page-download__important-note {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
    color: #333333;
}

.page-download__note-title {
    font-size: 1.5em;
    color: #C30808; /* Red for emphasis */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download__note-text {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Features Section */
.page-download__features-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
    color: #333333;
}

.page-download__features-section .page-download__section-title {
    color: #017439;
}

.page-download__features-section .page-download__section-description {
    color: #555555;
}

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

.page-download__feature-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    color: #333333;
}

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

.page-download__feature-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    width: 600px; /* Display size */
    height: 400px; /* Display size */
    object-fit: cover;
}

.page-download__feature-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download__feature-text {
    font-size: 1em;
    color: #555555;
}

/* Promotions Section */
.page-download__promotions-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
}

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

.page-download__promo-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}