
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 24px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #7DA6A8;
    color: #fff;
}

.about-container {
    height: 400px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.about-header {
    height: 300px;
    /* Adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

h2 {
    font-size: 40px;
    color: rgb(83, 81, 81);
}


.about-section {
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
    background: #7DA6A8;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(16.5px);
    -webkit-backdrop-filter: blur(16.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-section video {
    width: 100%;
}
.about-section p{
    text-align: justify;
    padding: 40px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:  #7DA6A8;
    padding: 10px;
  }
  
  .navbar .left {
    display: flex;
    align-items: center;
  }
  
  .navbar .left img {
    margin-right: 10px;
  }
  
  .navbar .right {
    display: flex;
    align-items: center;
  }
  
  .navbar .right a {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    font-size: 18px; /* Reduced font size */
  }
  
  .navbar .right a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown .dropbtn {
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: rgb(23, 166, 220);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

.header-image img {
    width: 100%;
    height: auto;
}
