body {
    margin: 0;
    background: #93C4A6;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

body, h1, h4, p, a {
     font-family: 'Open Sans', sans-serif;
}


.header {
    width: 85%;
    margin: 0 auto;
}

header {
  background: #93C4A6;
}

header::after {
    content: '';
    display: table;
    clear: both;
}

.logo {
  float: left;
  width: 83px;
  padding-top: 10px;
  padding-bottom: 10px;
}


.headingLeft {
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  padding-top: 10px;
  position: absolute;
  left: 170px;
}

.headingRight {
  float: right;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  padding-top: 10px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 60px;
  padding-top: 25px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}

a:hover {
    color: #ffffff;
}

.active {
    color: #EBCAE8;
    padding: 5px;
    border-radius: 10px;
    text-decoration-line: underline;
}

.apply:hover {
    text-shadow: none;
    box-shadow: 5px 5px 5px #81ad7b;
}

.section-button {
    display: inline-block;
    background-color: white;
    color: black;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;     
    width: fit-content; 
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-button:hover {
    transform: scale(1.05);
    box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.25);
}
  
.section-button.outline {
    background-color: #F8E16F;
    color: black;
    border: 2px solid white;
}  

.container2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container2 img {
    margin-top: 50px;
    height: 500px;
    width: 90vw; 
    border-radius: 50px;
}

.section-button {
  display: inline-block;
  transform-origin: center;
  background-color: #EBCAE8;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;     
  width: fit-content; 
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-button:hover {
  transform: scale(1.05);
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.25);
}

.section-button.outline {
  background-color: #EBCAE8;
  color: black;
  border: 2px solid white;
}  

footer {
  background: #F4F7EC;
  text-align: center;
  padding: 125px 80px 80px 80px;

  background-image: url('assets/circles.png');
  background-repeat: no-repeat; 
  background-size: 100% auto;
  background-position: center;
}

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

.footer-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

.footer-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: black;
  margin: 10px 0 0 0;
}
