/* Static Sections Styling for Banco Azteca Funeral Assistance Landing Page */

/* General Static Section Styles */
.static-section {
    padding: 3rem 0;
    background-color: #fff;
}

.section-title {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Feature Grid Styling */
.features-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-block {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-title {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #008048;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

/* FAQ Section Styling */
.faq-section {
    background-color: #fff;
}

.accordion-item {
    /* border: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem; */
}

.accordion-button {
    /* font-family: 'AvenirNextLTPro', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    background-color: transparent;
    padding: 1.25rem 0 0; */
}

.accordion-button:not(.collapsed) {
    /* background-color: transparent;
    box-shadow: none; */
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23008048' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    /* font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    padding: 0.5rem 0 1.5rem 0; */
}

/* Downloads Section Styling */
.downloads-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.download-text {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 18px;
    color: #333333;
    margin: 0;
}

.download-link {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #008048;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-link:hover {
    background-color: #006036;
    text-decoration: none;
    color: #fff;
}

/* Billing Section Styling */
.billing-section {
    padding: 3rem 0;
    background-color: #fff;
}

.billing-text {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.azteca-link {
    color: #008048;
    transition: color 0.3s ease;
}

.azteca-link:hover {
    color: #006036;
}

/* Footer Styling */
.site-footer {
    padding: 3rem 0;
    background-color: #333333;
    color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    font-family: 'AvenirNextLTPro', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #008048;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-block {
        width: 100%;
        max-width: 450px;
        margin-bottom: 1.5rem;
    }
    
    .download-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
