/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* Header and Navigation */
header {
    background-color: #007BFF;
    padding: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}


nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 20px 50px;
}

nav a:hover {
    background-color: antiquewhite;
    color: #333;
    border-radius: 10px;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 50px;
    background: url("banner5.png") no-repeat center center/cover;
    color: white;
}

.intro h1 {
    font-size: 48px;
}

.intro p {
    font-size: 18px;
    font-weight: bolder;
    color: whitesmoke;
}

.btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bolder;
}

/* Features Section */
#features {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: #f5f5f5;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature img {
    width: 100%;
    height: auto;
}

.feature h2 {
    font-size: 24px;
    margin-top: 10px;
}

.feature p {
    font-size: 16px;
}

/* About Section */
#about {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.team-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}

/* Video Section */
#video {
    padding: 50px;
    text-align: center;
}

video {
    width: 80%;
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    #features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 80%;
        margin-bottom: 20px;
    }

    video {
        width: 100%;
    }
}