/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inria Serif", serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn-download {
    background-color: #94B48E;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.nav-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: pink;
    text-align: center;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-image img {
    width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Features Section */
section {
    padding: 50px 30px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.feature-grid div {
    padding: 20px;
    background-color: #e2e2e2;
    border-radius: 8px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.team-card {
    background-color: #94B48E;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 4px solid white;
}

.team-card h3, .team-card p {
    margin: 5px 0;
    color: #000;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

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