/* style/download.css */

/* Base Styles */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background #1a1a1a */
    background-color: #1a1a1a; /* Ensure consistency with body background */
}

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

/* Section Titles and Descriptions */
.page-download__section-title {
    font-size: 3em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* 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: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent; /* Default transparent border */
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding and border are included in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-download__btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #1a1a1a; /* Dark text for gold background */
    border-color: #FFD700;
}

.page-download__btn-primary:hover {
    background-color: #e0b000; /* Slightly darker gold on hover */
    color: #ffffff;
    border-color: #e0b000;
}