* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Segoe UI', sans-serif;
}

body {
 background: #b3d1f05e;
 color: #333;
}

.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: #ffffff;
 padding: 15px 40px;
 box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo img {
 height: 50px;
}

nav a {
 margin: 0 15px;
 text-decoration: none;
 color: #555;
 font-weight: 500;
}

nav a.active, nav a:hover {
 color: #2c3e50;
 border-bottom: 2px solid #2c3e50;
}

.hero {
 background: linear-gradient(to right, #e0f7fa, #d1c4e9);
 padding: 80px 20px;
 text-align: center;
}

.hero h1 {
 font-size: 2.8rem;
 color: #2c3e50;
 margin-bottom: 20px;
}

.hero p {
 font-size: 1.2rem;
 color: #555;
}

.content {
 max-width: 1000px;
 margin: 40px auto;
 padding: 0 20px;
}

.content h2 {
 color: #2c3e50;
 margin-top: 40px;
 font-size: 1.8rem;
}

.content p {
 margin: 10px 0 20px;
 line-height: 1.7;
}

.content ul {
 padding-left: 20px;
 margin-top: 10px;
}

.content ul li {
 margin-bottom: 10px;
 line-height: 1.5;
}

.founder-cards {
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
 margin-top: 30px;
}

.founder-card {
 background-color: #c4bebe;
 border-radius: 12px;
 box-shadow: 3px 4px 12px rgb(0, 0, 0);
 padding: 20px;
 text-align: center;
 flex: 1;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.founder-card img {
 width: 110px;
 height: 140px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: 15px;
 box-shadow: 2px 2px 15px black;
}

.founder-card h3 {
 margin-bottom: 5px;
 font-size: 1.2rem;
}

.footer {
 background-color: #2c3e50;
 color: #fff;
 text-align: center;
 padding: 20px;
 margin-top: 60px;
}