/* Reset & General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    text-align: center;
}

/* Header */
header {
    background: #0073e6;
    padding: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: #333;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content .btn {
    background: #ff5733;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* About Section */
.about {
    padding: 50px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

.about img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 10px;
}

/* Why Choose Us */
.why-choose-us {
    background: #ff5733;
    color: white;
    padding: 50px;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

/* Our Team */
.our-team {
    padding: 50px;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.team-member img {
    width: 100px;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-links ul {
    padding: 0;
}

.footer-links ul li {
    display: inline;
    margin: 0 10px;
}

.footer-links a, .social-media a {
    color: white;
    text-decoration: none;
}
