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;
}

.contact-container {
    max-width: 700px;
    margin: 120px auto 50px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-container h1 {
    text-align: center;
    color: rgb(167, 89, 239);
    margin-bottom: 10px;
}

.contact-container p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid gray;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid rgb(35, 108, 218);
    box-shadow: 0 0 0 6px rgba(35,108,218,0.10);
}

.contact-form button {
    padding: 12px;
    font-size: 16px;
    background-color: rgb(8, 203, 8);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: rgb(6, 163, 6);
}

@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);
  }
}