/* style/download.css */

/* General page styling */
.page-download {
    font-family: Arial, sans-serif;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    line-height: 1.6;
}

/* Section general styles */
.page-download__section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size rule */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-download__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* Buttons */
.page-download__btn-primary,
.page-download__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button does not exceed container */
}

.page-download__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-download__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-download__btn-secondary {
    background: transparent;
    color: #2AD16F; /* A lighter green from the gradient */
    border: 2px solid #2E7A4E; /* Border color */
    box-shadow: none;
}

.page-download__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    transform: translateY(-2px);
}

/* Image base styles */
.page-download img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

/* Hero Section */
.page-download__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px 20px; /* Small top padding, larger bottom */
    background-color: #08160F; /* Background */
    text-align: center;
}

.page-download__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
}