* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

.header {
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.75) 0%, rgba(118, 75, 162, 0.75) 100%),
        url('images/header-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.header p {
    color: white;
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.header-btn {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.header-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-title {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.caravane-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.caravane-section .section-title {
    color: white;
}

.caravane-section .section-title::after {
    background: white;
}

.map-container {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: none;
}

.cities-list {
    margin-top: 2rem;
}

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

.city-column {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.city-item {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(5px);
}

.total-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.total-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

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

.distribution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.distribution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.distribution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.distribution-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.distribution-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.distribution-items {
    list-style: none;
    padding: 0;
}

.distribution-items li {
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    margin: 0.5rem 0;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.partners-section {
    margin-top: 2rem;
}

.partner-category {
    margin-bottom: 3rem;
}

.partner-category-title {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.partners-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f0f0f0;
}

.partners-scroll::-webkit-scrollbar {
    height: 8px;
}

.partners-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.partners-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
}

.partners-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #764ba2, #667eea);
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.price-tag {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.stats-overview {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-box-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    color: #666;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.donate-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
}

.footer {
    background: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    color: #666;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

            @media (max-width: 768px) {
    .header {
        padding: 4rem 1.5rem;
        min-height: 300px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1.1rem;
    }

    .section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cities-columns {
        grid-template-columns: 1fr;
    }

    .distributions-grid {
        grid-template-columns: 1fr;
    }

    .total-number {
        font-size: 2.5rem;
    }

    .partners-scroll {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .partner-logo {
        width: 120px;
        height: 80px;
    }
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.custom-popup {
    text-align: center;
    font-weight: bold;
}

.calculate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    /*width: 100%;
    margin: 1rem 0;*/
}

.calculate-btn:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.6);
}