* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: black;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    width: 100%;
    justify-self: center;

}

header {
    width: 100%;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 0;
    z-index:1000;
    padding: 3px;
    background-color:hsla(108, 23%, 79%, 0.98);
    left: 0;

}

nav {
    margin-top: -20px;
    overflow: hidden;
    white-space: nowrap;
}
.process_nav {
    display: block;
    position: sticky;
    top: 130px; /* Adjust based on your main nav's height */
    background-color: hsla(108, 23%, 79%, 0.98);
    z-index: 999; /* Lower than main_nav to stay below */
    width: 100vw;

    width: 100%;
    justify-content: center;
    left: 0;
    padding: 3px;
    background-color:hsla(108, 23%, 79%, 0.98);
    left: 0;
}

.process_nav ul{
    display: flex;
    font-size: 1.5rem;
}

.process_nav ul li {
    padding: 0 20px;
}
.process_nav ul li a{
    padding: 1px;
    text-decoration: none;
}

.process_nav ul li a:hover, .process_nav ul a:focus, .process_nav ul li a:active{
    border-bottom: solid 2px rgb(183, 173, 39);
    text-shadow:0px 0px 1px black;
}

nav ul {
    list-style-type: none;
    padding: 0.5rem;
    margin: 0;
    justify-content: center;

}

header ul li.title {
    color: black;
    text-align: center;
}

header ul li {
    display: inline-block;
    margin-inline: 0.5rem;
}
h1 {
    padding:20px;
}
header ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0.2rem;
}

header ul li a:hover, nav ul li a:focus,  nav ul li a.active {
    border-bottom: solid 2px rgb(183, 173, 39);
    text-shadow:0px 0px 1px black;

}


article {
    padding-top: 120px;
    margin-bottom: -80px;
    border-bottom: 2px solid black;
    background-color: #ffffff;
    padding-left: 5%;
    padding-right: 5%;

}


h2 {
    padding: 30px;
    text-align: center;
    font-size: 3rem;
}
h3 {
    display: block;
    font-size: 1.5rem;
    text-align: center;
    padding: 15px;
    padding-top: 200px;

}
.big{
    line-height: 180%;
    font-size: 2rem;
}
p, ul {
    font-size: 1.5rem;
    display: inline-block;
    padding: .5rem;
    line-height: 180%;
}

ul {
    margin-left: 5%;
    margin-right: 5%;
    margin-top:2%;
    margin-bottom:2%;
}

.container {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.halves img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
    /* Add any additional styles you want, e.g., padding, margin */
}

.halves {
    display:block;
    flex: 1;
    margin:5px;

}
.quarterBox {
    flex: 1;
    background-color: rgb(225, 225, 225);
    margin: 5px;
    border-radius: 5%;
}

.textSection {
    flex: 2;
    padding: 20px;
}

.imgSection {
    flex: 1; 
}

.imgSection img {
    width: 100%; 
    height: auto; 
    padding: 20px;
}

.quarterBox {
    flex: 1;
    background-color: rgb(225, 225, 225);
    margin: 5px;
    border-radius: 5%;
}

#abstract p .strong{
    display: block;
    padding: 2rem;
}

#about-team {
    text-align: center;
    padding-bottom: 15%;

  }
  
  #about-team h2 { /* About Team title */
    padding-top: 100px;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000000; 
    padding-bottom: 30px;

  }
  
  .team-members {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    padding-bottom: 5rem;
    width: 100%;

  }
  
  .team-member {
    width: 200px;
    text-align: center;
    padding: 20px;
    border-radius:10px;
    background-color: hsla(108, 11%, 63%, 0.98);


  }
  
  .team-member img {
    width: 100%;
    border-radius: 20px;
    height: 150px;
    object-fit: cover;

  }
  
  .team-member h3 {
    display: inline;
    font-size: 1.5rem;
    padding-top: -300px;
    color: #333; 

  }
  
  .team-member p {
    font-size: 1rem;
    color: #666;  
  }
  
