/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  color: #555;
}

.pad-left-25percent-em {
  padding-left: .25em;
}

.pad-left-50percent-em {
  padding-left: .5em
}

.roboto-condensed-a {
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #6b8e23;
  color: #fff;
  position: sticky;
  top: 0;
}

.navbar .logo {
  font-family: 'Homemade Apple', serif;
  font-size: 1.5rem;
  display: flex;
}

.navbar .logo img {
  height: 80px;
  width: 80px;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.navbar .nav-links li a:hover {
  text-decoration: underline;
}

/* Hamburger Menu Icon (hidden on desktop) */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Call to Action Section */
.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 5em;
}

.content {
  max-width: 600px;
}

.section-title {
  font-family: 'Bilbo', serif;
  font-size: 3.5rem;
  color: #6b8e23;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  color: #bf2525;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  padding: 10px 20px;
  background-color: #d88383;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #b66b6b;
}

.logo-container {
  flex-shrink: 0;
}

.logo-container img {
  max-width: 500px;
  height: auto;
}

.profile-image-container {
  flex-shrink: 0;
}

.profile-image-container img {
  max-width: 500px;
  height: auto;
  border-radius: 10%;
}

.nav-logo-container {
  flex-shrink: 0;
}

.nav-logo-container img {
  max-width: 40px;
  height: 40px;
}

/***Services page css***/

.card-container {
  /*display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  word-wrap: break-word;
  margin: 2em;*/
  margin: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.5em;
  padding-bottom: 2em;
}

.card {
  width: 300px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  color: #bf2525;
}

.card-header {
  color: #6b8e23;
}

.center {
  margin: auto;
  width: 10%;
  text-align: center;
}

.page-header {
  margin-left: .5em;
}

.break-bar {
  border-bottom: solid 1px #afd467;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-right-with-margin {
  margin-top: .25em;
  margin-right: 1em;
  float: right;
}
.full-width-with-margin {
  width: 100%;
  margin-bottom: 5em;
}
/**** End services page css ****/

/** contact page css #/

/* General Styles 
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #555;
} */

/* Footer Section */
.footer-section {
  padding: 10px 0;
  background-color: #f9f9f9;
  text-align: center;
  bottom: 0;
  position: fixed;
  width: 100%;
  margin-top: 20px;
}

.impact-statement h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #6b8e23;
  margin-bottom: 40px;
}

/* Footer Content */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.connect-with-us {
  flex: 0 1 auto;
}

.copyright {
  flex: 0 1 auto;
  text-align: right;
  color: #6b8e23;
  font-size: 0.85rem;
}

.connect-with-us h3 {
  font-size: 0.9rem;
  color: #6b8e23;
  margin-bottom: 3px;
}

.connect-with-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.connect-with-us ul li a {
  color: #6b8e23;
  text-decoration: none;
  font-size: 0.85rem;
}

.connect-with-us ul li a:hover {
  text-decoration: underline;
}

.connect-with-us p a {
  color: #555;
  text-decoration: none;
  font-size: 1rem;
}

.connect-with-us p a:hover {
  text-decoration: underline;
}

/* Locations */
.locations .location-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.locations .location p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .connect-with-us ul {
    flex-direction: column;
    gap: 10px;
  }

  .locations .location-list {
    flex-direction: column;
    gap: 15px;
  }

  .connect-with-us {
    flex: none
  }

  .footer-section {
    padding: 0 1em;
  }

  .card-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .impact-statement h1 {
    font-size: 2rem;
  }

  .connect-with-us ul li a,
  .locations .location p {
    font-size: 0.9rem;
  }


}

/** End contact page css */


/* Responsive Styles */
@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
  }

  .content {
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .logo-container img {
    max-width: 200px;
  }

  .card {
    width: 175px;
  }
  /* Navbar */
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #6b8e23;
    position: absolute;
    top: 60px;
    right: 30px;
    padding: 10px 20px;
    border-radius: 5px;
    border: solid 1px #cadca7
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .description {
    font-size: 0.85rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .logo-container img {
    max-width: 150px;
  }
}

@media(max-width: 1200px) {
  .card-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .card{
    width: 300px;
  }
}


