body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.box {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
  color:  #f4c500;
}
p {
  margin-bottom: 20px;
  font-size: 20px;
}
.mission h1, .about h1, .team h1, .commitment h1 {
  border-bottom: 2px solid #f4c500;
  padding-bottom: 10px;
}

nav {
    left: -2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s;
}

nav a:hover {
    color: #f4c500;
}

.a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.a:hover {
    color: #f4c500;
}


.content {
    flex: 1; 
    padding: 20px;
    text-align: center;
}

.footer {
    background-color: #4d4d4d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main {
  margin-top: 85px;
  align-items: center;
  text-align: center;
  color: black;
}

.social-icons {
    margin-bottom: 10px;
}

.icon-link {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #f4c500; 
}

.copyright {
    font-size: 14px;
    margin: 0;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f4c500;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#back-to-top:hover {
    background-color: #b99400;
}

#back-to-top i {
    margin-top: 2px;
}

.logo {
    cursor: pointer;
    width: 275px;
    height: 100px;
    position: relative;
    left: 2%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {

    h1 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 10px;
        border-bottom: 2px solid #f4c500;
        padding-bottom: 10px;
    }
  
    #back-to-top {
        right: 60px;
    }


    .logo {
        width: 85px;
        height: 85px;
      }
  
      .menu {
        align-items: flex-start;
        position: absolute;
        left: 30%;
    }
  
    nav a {
      left: 700px;
      padding-left: 1px;
    }
}


