/* style/download.css */

/* Base styles and container for the page */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #000000, so light text */
    background-color: #000000; /* Ensure consistency with body background */
}

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

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

.page-download__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #000000, #26A9E0); /* Dark gradient for hero */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-download__hero-section .page-download__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.page-download__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff; /* Ensure high contrast on dark background */
}

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

.page-download__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.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;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

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

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

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

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

.page-download__hero-image-wrapper {
    margin-top: 40px;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download__hero-image {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

/* Why Download Section */
.page-download__why-download-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Darker background for contrast with hero */
    color: #ffffff;
}

.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: rgba(255, 255, 255, 0.08); /* Slightly visible card on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff; /* Light text on dark card */
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-download__feature-icon {
    width: 200px; /* Minimum size */
    height: 200px; /* Minimum size */
    object-fit: contain;
    margin-bottom: 20px;
    /* filter: brightness(1.1); Removed filter as per strict instructions */
}

.page-download__feature-title {
    font-size: 1.5em;
    color: #26A9E0; /* Brand color for feature titles */
    margin-bottom: 10px;
}

.page-download__feature-description {
    font-size: 1em;
    color: #cccccc;
}

/* How to Download Section */
.page-download__how-to-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Even darker background */
    color: #ffffff;
}

.page-download__installation-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.page-download__guide-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-download__guide-title {
    font-size: 2em;
    color: #26A9E0;
    margin-bottom: 20px;
    text-align: center;
}

.page-download__guide-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download__guide-steps {
    list-style: decimal;
    padding-left: 25px;
    color: #f0f0f0;
}

.page-download__guide-steps li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-download__guide-steps li strong {
    color: #26A9E0;
}

/* App Features Section */
.page-download__features-app-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-download__app-feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

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

.page-download__app-feature-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: cover;
}

.page-download__app-feature-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-download__app-feature-description {
    font-size: 1em;
    color: #cccccc;
}

/* Bonuses Section */
.page-download__bonuses-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-download__bonuses-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-download__bonuses-image {
    max-width: 100%;
    flex: 1 1 500px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-download__bonuses-text {
    flex: 1 1 400px;
    color: #f0f0f0;
}

.page-download__bonuses-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-download__bonuses-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-download__bonuses-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #f0f0f0;
}

.page-download__bonuses-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #26A9E0;
}

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

.page-download__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-download__security-description {
    flex: 1 1 400px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-download__security-list {
    flex: 1 1 400px;
    list-style: none;
    padding: 0;
    color: #f0f0f0;
}

.page-download__security-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-download__security-list li::before {
    content: '🛡️'; /* Shield icon */
    position: absolute;
    left: 0;
    color: #26A9E0;
}

.page-download__security-image {
    max-width: 100%;
    flex: 1 1 500px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}


/* FAQ Section */
.page-download__faq-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-download__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-download__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-download__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: #26A9E0; /* Brand color for question background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-download__faq-question:hover {
    background-color: #1a7eb3;
}

.page-download__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-download__faq-item.active .page-download__faq-toggle {
    transform: rotate(45deg); /* Plus to Minus visual effect */
}

.page-download__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
    color: #f0f0f0;
}