:root {
  --primary-color: #15F5BA;
  --secondary-color: #57A6A1;
  --background-color: #fdf2f8;
  --font-family: "Open Sans", sans-serif;
  --font-family-title: "Open Sans", sans-serif;
  --button-color: #ff1493;
  --button-hover-color: #ff85c0;
  --header-background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  --section-background: #ffe4e1;
  --form-background: #fff0f5;
  --footer-background: var(--secondary-color);
  --footer-color: #fff;
}
* {
    box-sizing: border-box;
}h
body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  color: #333;
}

.header-section, .skewed-section {
  position: relative;
  /* padding: 50px 0; */
  margin-bottom: 50px;
}
.header-section .container {
  @media (min-width: 768px) {
    display: flex;
    flex-direction: row-reverse;
  }
}
.header-section::before, .skewed-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewY(-5deg);
  transform-origin: top left;
  z-index: -1;
}

.header-section::before {
  background: var(--secondary-color);
}

.skewed-section::before {
  background: #FFFBDA;
  /* border-radius: 20%; */
}

.container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 20px;
  @media (min-width: 768px) {
      padding: 3rem;
  }
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

.header-section h1 {
  margin: 0;
  font-size: 3.5em;
  color: #f0c104;
  font-family: var(--font-family-title);
  line-height: 1;
  text-shadow: -7px 0px black;
}
p{
  color: #3e3d3d;
}
.header-section p {
  font-size: 1em;
  margin-top: 10px;
  /* color: black; */
  line-height: 1.623;
}
.header-section img{
    max-width: 100%;
}
section h2 {
  color: #f0c104;
  font-size: 3em;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  font-family: var(--font-family-title);
  line-height: 1;
}

section p {
  font-size: 1em;
  line-height: 1.3;
}

.partners {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}
.partners img {
    max-width: 100%;
}

form {
  /* max-width: 400px; */
  min-width: 100%;
  margin: auto;
  /* background: var(--form-background); */
  /* padding: 20px; */
  /* border-radius: 20px; */
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
  font-size: 1em;
  background: var(--form-background);
}

.submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 20px;
  transition: background 0.3s;
}

.submit-button:hover {
  background: var(--button-hover-color);
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.faq-section img {
  max-width: 100%;
  margin-top: 20px;
  border-radius: 20px;
}

.highlight {
  color: #c7a312;
  font-weight: bold;
}

.footer {
  background: var(--footer-background);
  color: var(--footer-color);
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  /* border-top: 5px solid var(--button-color); */
}

.footer p {
  margin: 0;
  font-size: 1em;
}

@media (min-width: 768px) {
  .faq-section {
    flex-direction: row;
    text-align: left;
  }

  .faq-section div {
    flex: 1;
  }

  .faq-section img {
    max-width: 40%;
    margin-left: 20px;
    margin-top: 0;
  }
}

.owl-carousel .owl-item img {
    transform: skewY(-4deg);
}
