* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f9f0;
    color: #333;
}

/* Header Styles */
.banner {
    background: url("images/bvmt.jpg") no-repeat center center;
    background-size: cover;
    padding-top: 12rem;
    padding-bottom: 12rem;
    text-align: center !important;
    color: darkred !important;
    background-color: yellow !important;
    position: relative;
}

.banner h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner span {
    background-color: yellow;
    padding: 10px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slogan {
    background-color: #CCFF99 !important;
    text-align: center !important;
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.slogan-h2 {
    font-size: 120%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: -1px;  
    max-width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
    justify-content: center;
}

.block_3 {
    flex: 0 0 auto;
    width: 33.33333%;
    padding: 20px;
    transition: all 0.3s ease;
}

.block_3:hover {
    transform: translateY(-5px);
}

div#b3a:hover {
    font-size: 120%;
    color: red;
}

div#b3b:hover {
    font-size: 120%;
    color: red;
}

div#b3c:hover {
    font-size: 120%;
    color: red;
}

/* Main Content Styles */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.video-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-section iframe {
    max-width: 100%;
    border-radius: 8px;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    align-items: center;
}

.frame {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border: 2px solid #e0f0d9;
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    color: #2c3e50;
}

.text-content h2 {
    color: #1a6b2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #CCFF99;
}

.text-content ul {
    list-style-position: inside;
    margin-left: 15px;
}

.text-content li {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9fdf5;
    border-radius: 5px;
    border-left: 4px solid #1a6b2e;
}

.image-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reverse {
    flex-direction: row-reverse;
}

.btn-link {
    display: inline-block;
    background-color: #1a6b2e;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-link:hover {
    background-color: #2e8b57;
    color: white;
}

/* Footer Styles */
footer {
    background-color: #CCFF66;
    margin-top: 50px;
    padding: 40px 20px;
    border-top: 5px solid #1a6b2e;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 15px;
}

.footer-section h3 {
    color: #1a6b2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a6b2e;
}

.footer-list {
    list-style-type: none;
}

.footer-list li {
    margin-bottom: 12px;
    padding: 8px 0;
    color: #2c3e50;
}

.footer-icon {
    display: inline-block;
    width: 25px;
    margin-right: 10px;
    text-align: center;
}

.link {
    color: navy;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.link:hover {
    color: magenta;
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .block_3 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .row {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    
    .content-section, .reverse {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
    }
}

/* Animation for hover effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-section {
    animation: fadeIn 0.5s ease-out;
}
