/* Variables CSS */
:root {
    --primary-color: #e11d48;
    --primary-dark: #be123c;
    --secondary-color: #64748b;
    --accent-color: #f1f5f9;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --background: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

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

/* Header */
.emergency-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.emergency-bar i {
    margin-right: 8px;
}

.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.brand-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.brand-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-urgence {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-urgence:hover {
    background-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef7f7 0%, #f1f5f9 100%);
    padding: 80px 0 0 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-quote {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, rgba(100, 116, 139, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.image-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.image-placeholder p {
    color: var(--text-muted);
    font-size: 14px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    margin-top: 0 !important;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.mission h3, .values h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.mission-box {
    background-color: rgba(225, 29, 72, 0.05);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.mission-quote {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-item {
    margin-bottom: 24px;
}

.value-item h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.timeline-section {
    margin-top: 64px;
}

.timeline-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 120px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin: 0 24px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services {
    background-color: rgba(241, 245, 249, 0.3);
    padding: 75px 0 40px 0 !important;
    margin: 0 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.service-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.modalites {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.modalites h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 32px;
}

.modalites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.modalite-item {
    text-align: center;
}

.modalite-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.modalite-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    background-color: rgba(241, 245, 249, 0.3);
    padding: 80px 0;
}

.emergency-contact {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.emergency-header i {
    font-size: 32px;
    color: #dc2626;
}

.emergency-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.emergency-header p {
    color: var(--text-muted);
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.emergency-item {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.emergency-item i {
    font-size: 24px;
    color: #dc2626;
    margin-top: 4px;
}

.emergency-item h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 8px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.languages {
    background-color: rgba(241, 245, 249, 0.5);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.languages h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.language-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.language-tag {
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.languages p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--background);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.form-note {
    background-color: rgba(241, 245, 249, 0.5);
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.form-note p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-brand > p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-quote {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 2px;
    width: 16px;
}

.footer-contact-item p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-copyright p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-important {
    background-color: rgba(225, 29, 72, 0.1);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.footer-important p {
    font-size: 14px;
    text-align: center;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-urgence {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 40px;
    }
    
    .timeline-date {
        position: absolute;
        left: -60px;
        width: 80px;
        font-size: 12px;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modalites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-info {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-info {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modalites-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.timeline-content,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hero-grid-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}



.five-needs {
    padding: 40px 0 0 0 !important;
    margin: 0 !important;
    background-color: var(--color-light-gray);
    text-align: center;
}

.five-needs h2 {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 2.5em;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.need-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease;
}

.need-item:hover {
    transform: translateY(-5px);
}

.need-item h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.need-item p {
    color: var(--color-text);
    line-height: 1.6;
}



/* Team Section Styles */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.team-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.team-grid-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-text {
    padding-left: 20px;
}

.team-text .governance-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.team-text .governance-item {
    margin-bottom: 30px;
}

.team-text .governance-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.team-text .governance-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive design for team section */
@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-text {
        padding-left: 0;
    }
    
    .team-images {
        order: 2;
    }
    
    .team-text {
        order: 1;
    }
}


/* Accordion Styles */
.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--primary-dark);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.accordion-content.active {
    max-height: 2000px;
}

.accordion-body {
    padding: 30px;
}

.accordion-body h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.accordion-body h4:first-child {
    margin-top: 0;
}

.accordion-body h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}

.accordion-body p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive design for accordion */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
    
    .accordion-body h4 {
        font-size: 1.2rem;
    }
    
    .accordion-body h5 {
        font-size: 1rem;
    }
}


/* Support Section Styles */
.support {
    padding: 60px 0;
    background-color: white;
}

.support-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.support-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 200px;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 127, 0.3);
}

.support-image {
    width: 200px;
}

.support-grid-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.contact-info-section h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.emergency-contact {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.emergency-header i {
    color: #dc2626;
    font-size: 1.5rem;
}

.emergency-header h3 {
    color: #dc2626;
    margin: 0;
    font-size: 1.3rem;
}

.emergency-header p {
    color: #7f1d1d;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.emergency-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.emergency-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.emergency-item i {
    color: #dc2626;
    font-size: 1.2rem;
    margin-top: 3px;
}

.emergency-item h4 {
    color: #7f1d1d;
    margin-bottom: 5px;
    font-size: 1rem;
}

.emergency-item p {
    color: #7f1d1d;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.phone-number {
    font-weight: 600;
    font-size: 1.1rem !important;
}

/* Responsive design for support section */
@media (max-width: 768px) {
    .support-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .support-left {
        align-items: center;
    }
    
    .support-buttons {
        align-items: center;
    }
    
    .support-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .support-image {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 20px;
    }
}


/* Partners Section Styles */
.partners {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e2e8f0;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.partner-logo img {
    max-width: 80px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo .text-logo {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    line-height: 1.2;
    padding: 5px;
}

.partner-logo:hover .text-logo {
    color: var(--primary-color);
}

/* Responsive design for partners section */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .partner-logo {
        width: 90px;
        height: 55px;
    }
    
    .partner-logo img {
        max-width: 70px;
        max-height: 35px;
    }
    
    .partner-logo .text-logo {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .partner-logo {
        width: 80px;
        height: 50px;
    }
    
    .partner-logo img {
        max-width: 60px;
        max-height: 30px;
    }
    
    .partner-logo .text-logo {
        font-size: 0.65rem;
    }
}


/* Force removal of any spacing between sections */
section {
    margin: 0 !important;
}

