* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #fbfbfb;
  z-index: -1;
  max-width: 1600px;
  margin: 0 auto;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 242, 239, 1);
  width: 100%;
  min-height: 100vh;
  max-width: 1600px;
  overflow: auto;
  z-index: -15;
  position: relative;
}


.ellipse {
  position: absolute;
  top: -50vh;
  width: 4000px; /* Adjust the width as needed */
  height: 100vh; /* Adjust the height as needed */
  background-color: white;
  border-radius: 50%;
  z-index: -10; /* Ensure it is behind other content */
  overflow: hidden;
}

.graph1 {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  bottom: -64px;
  left: calc(2000px - 600px);
  transform: rotate(12.61deg);
  z-index: -8;
}

.graph2 {
  position: absolute;
  background-color: white;
  width: 1215px;
  height: 1100px;
  bottom: -250px;
  left: calc(2000px - 900px);
  z-index: -9;
  opacity: 0.20;
}

.graph3 {
  position: absolute;
  background-color: white;
  width: 320px;
  height: 286px;
  bottom: 10px;
  left: calc(2000px + 300px);
  z-index: -9;
  opacity: 0.20;
}

@media (max-width: 1200px) {
  .graph1 {
    left: calc(2000px - 540px);
  }

  .graph3 {
    left: calc(2000px + 240px);
    z-index: -9;
    opacity: 0.20;
  }
}

@media (max-width: 768px) {

  .ellipse {
    top: -40vh;
  }
  .graph1 {
    width: 300px;
    height: 300px;
    left: calc(2000px - 250px);
    bottom: -100px;
  }
  .graph2 {
    display: none;
  }
  .graph3 {
    display: none;
  }
}


h2 {
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

header {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 24px;
}

header .logo img {
  height: 116px;
}

header h1 {
  font-size: 2rem;
  color: #f26e3b;
}

header .line {
  width: calc(2 * 116px); /* Assuming the logo width is 116px */
  border: 2px solid rgba(255, 217, 207, 1);
  margin: 24px auto; /* Center the line horizontally */
}

/* Main section styling */
main {
  max-width: 1016px;
  text-align: center;
  position: relative;
  margin-top: 32px;
}

.hero {
  margin-bottom: 64px;
}

/* Hero section styling */
.hero h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 8px;
}

.hero p {
  font-size: 1rem;
  color: #666;
  margin: 32px 100px;
}

@media (max-width: 768px) {
  .hero p {
    margin: 32px 16px;
  }
}

/* Cards section styling */
.cards {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 32px 24px 64px;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    margin-left: 16px;
    margin-right: 16px;
  }
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin: 8px;
  flex: 1;
}

.card h3 {
  color: rgba(227, 47, 0, 1);
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 26.63px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.card p {
  font-size: 0.9rem;
  color: #333;
  text-align: left;
  margin-bottom: 8px;
}

/* Call to Action section */
.cta {
  margin-bottom: 24px;
}

.cta h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cta p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}
