body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Logo animation */
.logo-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 1s ease;
}
.logo-animation img {
    width: 200px;
    animation: logoFadeIn 2s ease;
}
@keyframes logoFadeIn {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}
.hide { opacity: 0; pointer-events: none; }

/* Video background */
.video-container {
    position: relative;
    height: 300px;
    z-index: -1;
}
.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay logo */
.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    bottom: -190px;
}
.logo-overlay img {
    width: 200px;
    height: auto;
    margin-top: -50px;
}

/* Main container */
.container {
    margin-top: -50px;
    z-index: 2;
}

/* Profile section */
.profile-section {
    background-color: #1a7747;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 12px;
}
.profile-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 5px;
    margin-top: -55px;
}
.profile-section h2 {
    font-size: 24px;
    margin: 5px;
}
.profile-section p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Contact section */
.contact-section {
    padding: 15px 20px;
    text-align: left;
}
.contact-section a {
    display: block;
    margin: 10px 0;
    color: #1a7747;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

/* Buttons */
.button-section {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    margin-top: 5px;
}
.button-section a {
    background-color: #1a7747;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

/* Social media */
.social-section {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-top: 20px;
}
.social-section a {
    font-size: 24px;
    color: #1a7747;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-section img {
        width: 100px;
        height: 100px;
    }
    
    .logo-overlay img {
    margin-top: 50px;
}
    .profile-section h2 {
        font-size: 20px;
    }
    .button-section a {
        padding: 10px;
        font-size: 14px;
    }
    .profile-section p {
        font-size: 14px;
    }
    .social-section a {
        font-size: 25px;
    }
}
