body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}
 
/* Logo animation container */
.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;
}
 
.aboutbearys {
    text-align: justify;
    margin: 15px;
}
 
.bearys-description {
    text-align: justify;
 
}
 
h3 {
    color: green;
}
.divider-line {
    border: 0;
    border-top: 2px solid #ccc; /* Gray color, adjust as needed */
    margin: 20px 0; /* Space around the divider */
}
 
.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;
}
 
/* Mobile-friendly layout */
 
 
.video-container {
    position: relative;
    height: 300px;
    z-index: -1;
}
 
.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
 
.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    bottom: -160px;
}
 
.logo-overlay img {
    width: 200px;
    height: auto;
    margin-top: 80px;
}
 
 
.container {
    margin-top: -50px;
    z-index: 2;
}
 
.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 {
    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;
}
 
.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-section {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-top: 20px;
}
 
.social-section a {
    font-size: 24px;
    color: #1a7747;
}
 
@media (max-width: 768px) {
    .profile-section img {
        width: 100px;
        height: 100px;
    }
 
    .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;
    }
}