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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #e6f7ff 0%, #cce6ff 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.logo {
    color: #0099cc;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    margin-right: 20px;
}

.africa-map {
    width: 150px;
    height: auto;
    margin-left: 20px;
}

.tagline {
    text-align: center;
    margin-bottom: 30px;
}

.tagline p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.tagline h2 {
    color: #4a4a9e;
    font-size: 2rem;
    font-weight: 700;
}

/* Gallery Styles */
.gallery {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Locations Styles */
.locations {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.locations-title {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-style: italic;
}

.countries {
    font-size: 1.2rem;
    line-height: 1.8;
}

.countries span {
    font-weight: 600;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-title {
    color: #4a4a9e;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.website, .email {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo {
        font-size: 3rem;
    }
    
    .africa-map {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 2.5rem;
    }
    
    .africa-map {
        margin-left: 0;
        width: 100px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 10px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline p {
        font-size: 1rem;
    }
    
    .tagline h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-title {
        font-size: 1.2rem;
    }
    
    .countries {
        font-size: 1rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .website, .email {
        font-size: 0.9rem;
    }
}
