/* style/download.css */

/* General styles for the download page */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    padding-top: 0; /* Assuming shared.css handles body padding-top */
}

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

.page-download__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-download__section-description {
    font-size: 18px;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-color: #1A202C; /* Dark background for hero */
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
}

.page-download__hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-download__main-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    max-width: 900px;
}

.page-download__intro-description {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 700px;
}

.page-download__hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.page-download__btn-primary,
.page-download__btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-download__btn-primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-download__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download__btn-secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-download__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

/* Benefits Section */
.page-download__benefits-section {
    padding: 80px 0;
    background-color: #1A202C; /* Dark background */
}

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

.page-download__benefit-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-download__benefit-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-download__benefit-card img {
    width: 100%;
    
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-download__benefit-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-download__benefit-card p {
    font-size: 16px;
    color: #e0e0e0;
}

/* Guide Section */
.page-download__guide-section {
    padding: 80px 0;
    background-color: #2a2a44; /* Slightly different dark background */
}

.page-download__guide-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.page-download__guide-block {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download__guide-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.page-download__guide-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    counter-reset: step-counter;
}

.page-download__guide-list li {
    font-size: 17px;
    color: #f0f0f0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

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

.page-download__guide-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A202C;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.page-download__guide-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.page-download__guide-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-download__btn-full-width {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
}

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

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

.page-download__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-download__feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-download__feature-card img {
    width: 100%;
    height: 250px; /* Fixed height for feature images */
    object-fit: cover;
    display: block;
}

.page-download__feature-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
    padding: 20px 20px 10px 20px;
}

.page-download__feature-card p {
    font-size: 16px;
    color: #e0e0e0;
    padding: 0 20px 20px 20px;
}

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

.page-download__faq-list {
    margin-top: 50px;
}

.page-download__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-download__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}