/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #007bff; /* Primary Blue */
    color: #fff;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #ffc107; /* Yellow Button */
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

/* Video Feed Section */
.video-feed {
    background-color: #f8f9fa; /* Light Gray */
    padding: 40px 20px;
}

.video-feed h2 {
    color: #007bff; /* Blue Heading */
    text-align: center;
    margin-bottom: 20px;
}

.video-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-card h3 {
    font-size: 1.2em;
    color: #007bff;
}

/* Featured Projects Section */
.featured-projects {
    background-color: #e9ecef; /* Soft Gray */
    padding: 40px 20px;
}

.featured-projects h2 {
    color: #343a40; /* Dark Gray */
    text-align: center;
    margin-bottom: 20px;
}

.featured-projects .btn {
    background-color: #28a745; /* Green Button */
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 40px 20px;
    border-top: 4px solid #007bff; /* Blue Border */
}

.about h2 {
    text-align: center;
    color: #007bff;
}

.about p {
    font-size: 1.1em;
    text-align: center;
    color: #555;
}
