/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-menu .nav-links {
    list-style: none;
    display: flex;
}

.navbar-menu .nav-link {
    margin: 0 15px;
    color: #fff;
    transition: color 0.3s;
}

.navbar-menu .nav-link:hover, .nav-link.active {
    color: #ff4500;
}

/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
    color: #fff;
}

.hero-content .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Mission Section */
.mission {
    padding: 50px 20px;
    background: #f1f1f1;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Core Values Section */
.values {
    padding: 50px 20px;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.value {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.value p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Team Section */
.team {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    color: #555;
}

/* Call-to-Action Section */
.cta {
    padding: 50px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4500;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #e03e00;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 15px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}