.elementor-22398 .elementor-element.elementor-element-0a0320f > .elementor-container{max-width:500px;}.elementor-22398 .elementor-element.elementor-element-04b0e7a{width:var( --container-widget-width, 97.556% );max-width:97.556%;--container-widget-width:97.556%;--container-widget-flex-grow:0;}@media(max-width:1024px){.elementor-22398 .elementor-element.elementor-element-04b0e7a{width:var( --container-widget-width, 960px );max-width:960px;--container-widget-width:960px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-04b0e7a *//* Reset global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #e8a657, #d4924a);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 2rem;
    font-weight: 300;
}

/* Stats */
.stats-section {
    background: white;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.stats-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 30px;
    flex: 1 1 200px; /* Flexible width min 200px */
    max-width: 250px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #666;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #e8a657;
    margin-bottom: 5px;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
}

/* Main content */
.main-section {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.main-content-wrapper {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.main-title {
    background: #e8a657;
    color: white;
    padding: 15px;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Search section */
.search-section {
    background: white;
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.search-instruction {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.search-input {
    flex: 1 1 300px;
    min-width: 250px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #e8a657;
}

.filter-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1 1 300px;
    min-width: 250px;
}

.filter-select {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.reset-button {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    flex: 0 0 auto;
}

.reset-button:hover {
    background-color: #999;
}

/* Associations */
.associations-container {
    max-height: 800px;
    overflow-y: auto;
    padding: 20px;
}

.association-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.association-card:hover {
    transform: translateY(-3px);
}

.association-name {
    color: #2c8aa6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-decoration: underline;
}

.association-category {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.association-description,
.association-details {
    margin-bottom: 10px;
}

.contact-email {
    color: #2c8aa6;
    text-decoration: none;
}

/* Responsive */

@media (max-width: 900px) {
    .stats-section {
        justify-content: center;
    }
    .stats-card {
        max-width: 45%;
        flex: 1 1 45%;
    }
    .search-container {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-dropdowns {
        flex-direction: column;
        width: 100%;
    }
    .filter-select {
        width: 100%;
        min-width: unset;
        flex: unset;
    }
    .search-input {
        width: 100%;
        min-width: unset;
        flex: unset;
    }
    .reset-button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .stats-card {
        max-width: 90%;
        flex: 1 1 90%;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .main-title {
        font-size: 1.2rem;
    }
    .association-name {
        font-size: 1.1rem;
    }
    .associations-container {
        max-height: 600px;
        padding: 10px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.3rem;
    }
    .stats-number {
        font-size: 1.8rem;
    }
}/* End custom CSS */