
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

img { max-width:100%; height:auto; border-radius:4px; }
body { line-height:1.5; }

body {
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #003b82;
    color: #ffd200;
    padding: 20px 0;
}

header h1 {
    text-align: center;
}

header nav {
    margin-top: 10px;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px 0;
}

.section {
    padding: 0 0 50px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section p {
    text-align: center;
    margin-bottom: 20px;
}


.dark {
    background-color: #4190c5;
    color: #fff; 
    padding-top: 20px; 
}

.team-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    margin: 15px;
}

.team-member img {
    width: 110px;
    height: 150px;
    margin-bottom: 10px;
    object-fit: cover;
}

.team-member p {
    margin: 2px 0;
}


.separator {
    background-color: #ffd200; 
    height: 10px; 
    width: 100%; 
}


#sponsor {
    background-color: #003b82;
    color: #ffd200; 
    padding: 50px 0;
}

.sponsor-details {
    text-align: center;
    margin-top: 20px;
}

.sponsor-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.sponsor-details p {
    margin: 5px 0;
}


#milestones {
    padding-top: 20px; 
    padding-bottom: 5px; 
}

.milestone-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.milestone-list li {
    margin: 10px 0;
}

footer {
    background-color: #003b82;
    color: #ffd200;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #ffd200;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: block;
}

.tech-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.tech-item {
    flex-basis: 45%; 
    text-align: center;
}

.tech-item h3 {
    margin-bottom: 10px;
}

.tech-item p {
    margin-bottom: 15px;
}

.tech-item img.tech-logo {
    width: 100px;
    height: auto;
    margin: 0 auto;
}

.tech-item img.pandas-logo {
    width: 250px; 
    height: auto;
    margin: 0 auto;
}

#technologies {
    padding-top: 20px; 
    padding-bottom: 5px; 
}

.overview-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  .overview-section h2,
  .overview-section h3,
  .overview-section p {
    text-align: center;
    color: #00457C;
  }
  
  .overview-section img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
  }