@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
body { font-family: 'Montserrat', sans-serif; }

.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    max-height: 400px;
}
@media (min-width: 768px) {
    .chart-container {
        height: 350px;
    }
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.service-card, .funding-card {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.service-card:hover, .funding-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15); /* Shadow from Navi Blue */
}
.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.details-content.open {
    max-height: 500px; /* Adjust as needed */
}
.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #D98659; /* Terracota */
}
.btn-primary {
    background-color: #D98659; /* Terracota */
    color: white;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #C0754A; /* Terracota oscuro */
}
.btn-secondary {
    background-color: #1A365D; /* Navi blue */
    color: #F3F8EDA; /* Liat Beige */
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: #264B7A; /* Navi blue ligeramente más claro */
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #D98659; /* Terracota */
    margin: 8px auto 0;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #D98659; /* Terracota */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Style for required messages */
.error-message {
    color: #B6321C; /* Rojo */
    font-size: 0.875rem; /* text-sm */
    margin-top: 0.25rem; /* mt-1 */
}