* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.main-header {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.header-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
}

.website-link {
    color: white;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.website-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.website-link a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: underline;
}

.main-header h1 {
    text-align: center;
    color: white;
    margin-bottom: 0;
    font-size: 1.8em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    font-weight: 500;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.three-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 100vh;
}

.column-2 {
    grid-column: 1;
}

.column-3 {
    display: none;
}

.column {
    display: flex;
    flex-direction: column;
}

.column-1 {
    align-items: flex-start;
}

.logo-container {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    width: 100%;
}

.logo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 10px;
    display: block;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    aspect-ratio: 1;
    min-height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 1001;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    font-size: 18px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .three-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .header-image {
        max-height: 250px;
    }

    .website-link {
        font-size: 1em;
    }

    .website-link a {
        padding: 6px 12px;
    }

    .main-header h1 {
        font-size: 1.4em;
        padding: 15px;
    }

    .prev,
    .next {
        font-size: 30px;
        padding: 10px;
    }

    .close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}

/* Footer Styles */
.main-footer {
    width: 100%;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.facebook-section {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.facebook-section h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.facebook-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.facebook-link {
    color: white;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    background: rgba(59, 89, 152, 0.6);
    border-radius: 8px;
    display: block;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
}

.facebook-link:hover {
    background: rgba(59, 89, 152, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.donation-section {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.donation-section h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bank-info {
    color: white;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.email-info {
    margin-top: 20px;
}

.email-info a {
    color: white;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.email-info a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.whatsapp-info {
    margin-top: 20px;
}

.whatsapp-info a {
    color: white;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    background: rgba(37, 211, 102, 0.6);
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-info a:hover {
    background: rgba(37, 211, 102, 0.8);
    transform: translateY(-2px);
}

.about-section {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

.about-section h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.service-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.service-item h3 {
    color: white;
    font-size: 1.3em;
    margin-bottom: 12px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1em;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.credit-section {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.credit-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.credit-section strong {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .donation-section h2 {
        font-size: 1.6em;
    }

    .bank-info {
        font-size: 1.1em;
        padding: 12px;
    }

    .email-info a {
        font-size: 1em;
        padding: 10px 15px;
    }

    .whatsapp-info a {
        font-size: 1em;
        padding: 10px 15px;
    }

    .facebook-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .facebook-link {
        font-size: 1em;
        padding: 12px 15px;
    }

    .facebook-section h2 {
        font-size: 1.6em;
    }

    .about-section h2 {
        font-size: 1.6em;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: 1.1em;
    }

    .service-item p {
        font-size: 0.95em;
    }
}

