body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f6edeb;
}

.navbar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center; 
    background-color: rgb(216, 242, 245); 
    font-family: Poppins, sans-serif;
    position: fixed;
    top: 0;           
    left: 0;          
    width: 100%;
    z-index: 100;
}

.logo {
    padding-left: 20px;
    height: 70px;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    justify-self: end;
}

.right-section {
    display: flex;          
    justify-content: center; 
    align-items: center; 
    gap: 25px;  
}

.nav-item{
    color: #222a68;
    cursor: pointer;
    text-decoration: none;
}

.nav-button {
    background-color: white;
    color: rgb(17, 184, 184);
    font-family: Poppins, sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid rgb(17, 184, 184);
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 15px;
}

.nav-button a{
    text-decoration: none;
    color: inherit;
}

.about-container {
    max-width: 900px;
    margin: 90px auto;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: rgb(167, 89, 239);
}

.about-container h2 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: rgb(17, 184, 184);
}

.about-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-container li {
    margin-bottom: 8px;
    font-size: 17px;
}

@media (max-width: 1000px) {
  .hamburger {
    display: block;
    margin-right: 10px;
  }

  .right-section {
    display: none;
  }

  .right-section.active {
    display: flex;
    flex-direction: column;
    background: rgb(216, 242, 245);
    position: absolute;
    top: 70px;
    right: 15px;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
}