*
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #f4f4f4;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
}

.red {
    color: red;
}

.green {
    color: green;
}

.yellow {
    color: #ffff6b;
}
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh; 
    padding-left: 50px; 
    background-image: url('5.jpg');
    background-size: cover;
    background-position: center;
    color: white; 
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.347); 
    z-index: 1;
}

.intro h2 {
    position: relative;
    z-index: 2;
    font-size: 4.5rem; 
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff; 
}

.intro p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem; 
    line-height: 1.8; 
    margin-left:20px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 10px 25px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
   
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.btn:hover {
    background-color: green; 
    color: white; 
}
   


main {
    padding: 20px;
    text-align: center;
}

h2 {
    margin-top: 30px;
    font-size: 2rem;
    color:   #b71c1c  ;
}
.video-section {
    text-align: center; 
    font-size: 2.5rem;
    color: #006400; 
    margin: 50px 0; 
}

.video-section h2 {
    font-size: 2.5rem;
    color:  #b71c1c ; 
    margin-bottom: 20px;
    text-align: center;
}

.video-section p {
    font-size: 1.5rem;
    color: #555; 
    margin-bottom: 20px;
}

.video-section a {
    color: #006400; 
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease; 
}

.video-section a:hover {
    color: #008000; 
}


iframe {
    display: flex;
    margin: 20px auto;
    width: 90%; 
    max-width: 1200px;
    height: 500px;
    border: none;
}
.resources {
    text-align: center;
    font-size: 2.5rem;
    color: #006400; 
    margin: 50px 0;
}

.resources h2 {
    text-align: center; 
    font-size: 2.5rem; 
    color:  #b71c1c ; 
    margin-bottom: 20px;

}

.resources p {
    font-size: 1.5rem;
    color: #555; 
    margin-bottom: 20px;
}

.resources a {
    color: #006400;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease; 
}

.resources a:hover {
    color: #008000; 
}


.container {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    gap: 20px; 
}

.box {
    flex: 1;
    max-width: 45%;
    background-color: #fff; 
    border: 1px solid #ddd;  
    border-radius: 10px; 
    padding: 20px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: center; 
}
.additional-info p {
    font-size: 1.5rem;
    color: #555; 
    margin-bottom: 20px;
}
.additional-info a {
    color: #006400;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.icon {
    font-size: 3rem; 
    color: #006400; 
    margin-bottom: 15px; 
    border: 2px solid #006400; 
    border-radius: 50%; 
    width: 80px; 
    height: 80px; 
    display: flex;
    justify-content: center;
    align-items: center; 
    margin: 0 auto; 
} 

p {
    font-size: 1.1rem;
    color: #555; 
    line-height: 1.6; 
}
footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .intro {
        height: auto;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .intro h2 {
        font-size: 2.5rem;
    }

    .intro p {
        font-size: 1rem;
        margin-left: 0;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    iframe {
        height: 250px;
    }

    .container {
        flex-direction: column;
        padding: 20px;
    }

    .box {
        max-width: 100%;
    }

    .video-section h2,
    .resources h2 {
        font-size: 1.8rem;
    }

    .video-section p,
    .resources p,
    .additional-info p {
        font-size: 1rem;
    }

    .icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
}
