/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 10;
    color: #333;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 2rem;
}

.navbar-brand {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: url('https://png.pngtree.com/background/20210711/original/pngtree-university-club-recruiting-new-poster-picture-image_1081818.jpg') no-repeat center center/cover;
    color: #000;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #000; /* Black color for the headline */
}

.hero-text p {
    font-size: 1.25rem;
    color: #000; /* Black color for the paragraph */
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 2rem; /* Added padding for spacing */
    text-align: center; /* Center-align text */
    max-width: 1200px; /* Limit the maximum width for large screens */
    margin: 0 auto; /* Center-align the section itself */
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-section ul {
    padding-left: 0; /* Remove default padding */
    list-style: none; /* Remove default bullets */
    display: inline-block; /* Center-align list */
    text-align: left; /* Align text in list to the left */
}

.about-section ul li {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* Remove Image Styles */
.about-section img {
    display: none; /* Hide any images in the About section */
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Footer Styles */
.footer-section {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
