body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn {
  padding: 8px 16px;
  background-color: #008cff;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
}

.orgName {
  font-size: 1.2rem;
}

.headerLink {
  color: black;
}

.headerBtn {
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 0.3s forwards;
}

.hero h1 {
  font-size: 2.5rem;
  max-width: 600px;
  align-self: flex-start;
  margin: 0;
  color: #eaf4f4;
}

.hero-bottom-link {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 0.8s forwards;
}

.hero-bottom-link a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Services section on home page */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
  background-color: #f9f9f9;
}

.card {
  width: 360px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  margin: 0 0 12px;
}

.card-content a {
  color: #008cff;
  text-decoration: none;
  font-weight: 500;
}

/* Call to Action section */
.callToAction {
  font-size: 16px;
  padding: 30px 20px;
  text-align: center;
  background-color: white;
}

.callToAction a:visited {
  color: blue;
  background-color: transparent;
  text-decoration: none;
}

/* About page */
p {
  font-size: 1rem;
}

.about-hero {
  position: relative;
  padding: 100px 20px 60px;
  padding-left: 100px;
  color: #333;
  text-align: left;
  overflow: hidden;
}

.about-hero img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.about-hero h1,
.about-hero strong,
.about-hero p {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero p {
  max-width: 600px;
  font-size: 1.1rem;
}

main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.highlight-box {
  background-color: #eaf4f4;
  padding: 20px;
  border-left: 4px solid #008cff;
  margin-top: 20px;
}

.highlight-box h2 {
  font-size: 1.4rem;
  margin: 0 0 10px;
  font-weight: 600;
}

/* Alternating image-text section */
.image-text-section {
  display: flex;
  align-items: center;
  margin: 60px 0;
  gap: 0;
  position: relative;
}

.image-text-section.reverse {
  flex-direction: row-reverse;
}

.section-image {
  flex: 0 0 400px;
  position: relative;
  z-index: 2;
}

.section-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-text-section.reverse .section-image img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.section-content {
  flex: 1;
  padding: 40px 60px;
  position: relative;
  z-index: 1;
  background: rgba(255, 182, 193, 0.2);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  margin-left: 0;
}

.image-text-section.reverse .section-content {
  background: rgba(173, 216, 230, 0.3);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
  margin-left: 0;
  margin-right: 0;
}

.section-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.section-content h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* Footer */
.footer {
  padding: 30px 20px;
  text-align: center;
  background-color: white;
  font-size: 16px;
}

.footer a {
  color: #008cff;
  text-decoration: none;
}

/* Contact page */
.container {
  max-width: 600px;
  margin: 50px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h2 {
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

form button {
  background-color: #008cff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: -15px;
  margin-bottom: 10px;
}

.contactUsTitle {
  justify-self: center;
}

.submitContainer {
  justify-self: center;
  align-items: center;
}

.contact-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.contact-cards .card {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-cards i {
  color: #004080;
  margin-bottom: 10px;
}

/* Services page */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.section {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 12px;
  background-color: #f8f9fa;
}

.section-image {
  flex-shrink: 0;
  width: 260px;
}

.section-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 200px;
}

.section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
  padding: 5px;
}

h1 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

h2 {
  color: #003366;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.section-content {
  flex: 1;
  text-align: left;
}

ul {
  padding-left: 20px;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.why-choose {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-top: 4rem;
}

.why-choose ul {
  list-style-type: none;
  padding-left: 0;
}

.why-choose li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.why-choose li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #008cff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .section-image {
    width: 100%;
    max-width: 300px;
  }

  .section-header {
    width: auto;
  }

  main {
    padding: 0 15px;
  }

  .image-text-section,
  .image-text-section.reverse {
    flex-direction: column;
    gap: 0;
  }

  .image-text-section .section-image {
    flex: none;
    width: 100%;
  }

  .image-text-section .section-image img {
    border-radius: 8px 8px 0 0 !important;
  }

  .section-content {
    border-radius: 0 0 20px 20px !important;
    height: auto;
    min-height: 200px;
    padding: 30px;
  }
}
