:root {
    --primary-color: #2e7d32;
    --secondary-color: #66bb6a;
    --light-color: #f1f8e9;
    --dark-color: #1b5e20;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: var(--secondary-color);
    color: white;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading-title h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.content-title h2 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.content-highlights li {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 0;
    color: blue;
    text-align: center;
}

.download-link {
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.download-link:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

.card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header h3 {
    font-size: 1.25rem;
}
footer {
    background-color: white !important;
}

footer .container-fluid {
    border: 10px solid var(--primary-color) !important;
    padding: 1.5rem;
}

footer h4 {
    font-weight: 700;
    margin: 0;
    padding: 0.5rem 0;
    color: #000 !important;
}

/* footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
} */

footer address, footer p {
    color: var(--light-color);
}
.download-link {
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    width: 100%; /* Ensure equal width */
    text-align: center; /* Center text */
    margin-bottom: 0.75rem; /* Consistent spacing */
    border: 2px solid var(--primary-color); /* More visible border */
    font-weight: 500; /* Slightly bolder text */
}

.download-link:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}

/* For the card body */
.card-body {
    padding: 1.5rem; /* More padding for better spacing */
}

/* For the columns */
.col-md-6 {
    padding: 0 1rem; /* Add some padding between columns */
}@media (max-width: 576px) {
    .download-link {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
    }
    
    .heading-title h1 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
    
    .content-title h2 {
        font-size: 1.2rem;
    }
    footer h4 {
        font-size: 1.3rem;
    }
}