* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar nav ul {
    display: flex;
    list-style-type: none;
}

.navbar nav ul li {
    margin-left: 20px;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
}

.navbar nav ul li a:hover {
    color: #f39c12;
}

#hero {
    background: url('./boys.jpeg') center/cover no-repeat;
	background-position: 50% 75%;
    color: white;
    padding: 200px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e67e22;
}

.section-header {
    text-align: center;
    margin: 40px 0;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
}

.why-join-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

.feature {
    background: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    font-size: 24px;
    color: #333;
}

.feature p {
    font-size: 16px;
    color: #555;
}

.founder-list {
    display: flex;
    justify-content: space-around;
    margin: 40px 20px;
}

.founder {
    background: white;
    padding: 20px;
    width: 20%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.founder h3 {
    font-size: 20px;
    color: #333;
}

.founder p {
    font-size: 16px;
    color: #555;
}

#contact {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.contact-info p {
    font-size: 18px;
}

.contact-info a {
    color: #f39c12;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background-color: #222;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
}
