*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lexend", sans-serif;
  color: #173150;
  background-color: #FAB51C;
  line-height: 1.6;
  overflow-x: hidden;
}

.section {
  padding: 4rem 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section--hero {
  background-color: #FAB51C;
  text-align: center;
}

.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__circle {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: #EC6E2D;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.hero__heading {
  font-family: "Climate Crisis", system-ui;
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #1D3169;
}

.hero__illustration {
  margin-top: 1.5rem;
}

.hero__cat-img {
  display: flex;
  justify-content: flex-start;
  max-width: 100%;
  height: auto;
}

.section__body {
  max-width: 800px;
  margin-top: 2rem;
  z-index: 2;
  position: relative;
}

.section__subheading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: #1D3169;
  text-align: center;
}

.section__text,
.section__quote {
  font-size: 1.125rem;
  margin-bottom: 1.2rem;
}

.section__quote {
  font-style: italic;
  font-weight: 500;
}

.stats-box {
  background-color: #FAB51C;
  border-top: 8px solid #344EA1;
  border-bottom: 8px solid #EC6E2D;
  border-radius: 32px 32px 0 0;
  padding: 1.5rem;
  margin: 2.5rem 0;
}

.stats-list {
  list-style: none;
  padding-left: 1.8rem;
  font-size: 1rem;
}
.stats-list li {
  margin-bottom: 0.8rem;
  position: relative;
}
.stats-list li::before {
  content: "";
  position: absolute;
  left: -1.8rem;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FAB51C;
}

.footer-assets {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2rem;
}

.fish-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.fish-icon {
  width: 75px;
  height: auto;
}

.sunburst-img {
  display: flex;
  justify-content: flex-end;
  width: 772px;
  height: auto;
}

@media (max-width: 768px) {
  .hero__heading {
    font-size: 2.4rem;
  }
  .hero__heading br {
    display: none;
  }
  .hero__circle {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -120px;
  }
  .section__subheading {
    font-size: 1.8rem;
  }
  .section__text,
  .section__quote {
    font-size: 1rem;
  }
  .footer-assets {
    flex-direction: column;
    gap: 1.2rem;
  }
  .sunburst-img {
    width: 60px;
  }
  .fish-icon {
    width: 22px;
  }
}
@media (max-width: 480px) {
  .hero__heading {
    font-size: 2rem;
  }
  .hero__circle {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -100px;
  }
  .stats-box {
    padding: 1.2rem;
  }
  .stats-list {
    font-size: 0.9rem;
  }
}
.section--story {
  background-color: #FAB51C;
  text-align: left;
  padding: 4rem 2rem;
}

.section--story .section__body {
  max-width: 800px;
  margin: 0 auto;
}

.section__heading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #1D3169;
  text-align: center;
}

.section__text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reasons-list {
  margin: 2rem 0;
}

.reason-item {
  margin-bottom: 1.5rem;
}

.reason-title {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1D3169;
  margin-bottom: 0.5rem;
}

.reason-text {
  font-size: 1rem;
  margin-left: 1rem;
}

.myth-truth-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  background-color: #FAB51C;
  border-top: 4px solid #344EA1;
  border-bottom: 4px solid #EC6E2D;
  border-radius: 16px 16px 0 0;
  padding: 1.5rem;
}

.myth-truth-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .myth-truth-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

.myth-truth-content {
  flex: 1;
  font-size: 1rem;
}
.myth-truth-content p {
  margin-bottom: 0.5rem;
}

.yarn-balls {
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
}

.yarn-ball {
  width: 75px;
  height: auto;
}

@media (max-width: 768px) {
  .hero__heading {
    font-size: 2.4rem;
  }
  .hero__heading br {
    display: none;
  }
  .hero__circle {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -120px;
  }
  .section__subheading {
    font-size: 1.8rem;
  }
  .section__text,
  .section__quote {
    font-size: 1rem;
  }
  .footer-assets {
    flex-direction: column;
    gap: 1.2rem;
  }
  .sunburst-img {
    width: 60px;
  }
  .fish-icon {
    width: 22px;
  }
  .section__heading {
    font-size: 2.2rem;
  }
  .section__text {
    font-size: 1rem;
  }
  .reason-title {
    font-size: 1.2rem;
  }
  .myth-truth-box {
    flex-direction: column;
    gap: 1rem;
  }
  .yarn-ball {
    width: 28px;
  }
}
@media (max-width: 480px) {
  .hero__heading {
    font-size: 2rem;
  }
  .hero__circle {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -100px;
  }
  .stats-box {
    padding: 1.2rem;
  }
  .stats-list {
    font-size: 0.9rem;
  }
  .section__heading {
    font-size: 1.8rem;
  }
  .reason-title {
    font-size: 1.1rem;
  }
  .yarn-ball {
    width: 24px;
  }
}
.section--adoption {
  background-color: #FAB51C;
  text-align: center;
  padding: 4rem 2rem;
}

.section--adoption .section__body {
  max-width: 800px;
  margin: 0 auto;
}

.section__heading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #1D3169;
}

.section__quote {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #1D3169;
}

.cat-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.cat-photo-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 8px solid #EC6E2D;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cat-photo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section__subheading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #344EA1;
  text-align: left;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.benefits-list li {
  margin-bottom: 0.5rem;
  position: relative;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FAB51C;
}

.section__text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
}

.cat-bed-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cat-bed-icon {
  width: 75px;
  height: auto;
}

@media (max-width: 768px) {
  .section__heading {
    font-size: 2.2rem;
  }
  .section__quote {
    font-size: 1.2rem;
  }
  .cat-photo-circle {
    width: 160px;
    height: 160px;
  }
  .section__subheading {
    font-size: 1.6rem;
  }
  .benefits-list {
    font-size: 0.95rem;
  }
  .cat-bed-icon {
    width: 28px;
  }
}
@media (max-width: 480px) {
  .section__heading {
    font-size: 1.8rem;
  }
  .section__quote {
    font-size: 1.1rem;
  }
  .cat-photo-circle {
    width: 140px;
    height: 140px;
  }
  .benefits-list {
    font-size: 0.9rem;
  }
  .cat-bed-icon {
    width: 24px;
  }
}
.section--actions {
  background-color: #FAB51C;
  padding: 4rem 2rem;
  position: relative;
}

.section--actions .section__body {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  margin-top: 4rem;
  text-align: center;
}

.intro-heading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1D3169;
  text-align: center;
}

.intro-subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #173150;
  margin-bottom: 2rem;
}

.section__subheading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #344EA1;
  text-align: left;
}

.action-list {
  margin: 1.5rem 0;
}

.action-item {
  margin-bottom: 1.5rem;
}

.action-title {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1D3169;
  margin-bottom: 0.5rem;
}

.action-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 0.5rem;
}

.faq-box {
  background-color: #FAB51C;
  border-top: 4px solid #344EA1;
  border-bottom: 4px solid #EC6E2D;
  border-radius: 16px 16px 0 0;
  padding: 1.5rem;
  margin-top: 2rem;
}

.faq-content {
  font-size: 1rem;
}
.faq-content p {
  margin-bottom: 0.5rem;
}
.faq-content strong {
  font-weight: 700;
}

.section--ending {
  background-color: #FAB51C;
  padding: 4rem 2rem;
}

.section--ending .section__body {
  max-width: 800px;
  margin: 0 auto;
}

.section__heading {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1D3169;
  text-align: center;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .hero-content-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

.starburst-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
@media (max-width: 768px) {
  .starburst-container {
    min-height: 150px;
  }
}
@media (max-width: 480px) {
  .starburst-container {
    min-height: 120px;
  }
}

.starburst-img {
  width: 100%;
  height: auto;
  max-width: 1520px;
}
@media (max-width: 768px) {
  .starburst-img {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .starburst-img {
    max-width: 200px;
  }
}

.starburst-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  padding: 1rem;
  max-width: 80%;
}
.starburst-text-overlay strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .starburst-text-overlay {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}
@media (max-width: 480px) {
  .starburst-text-overlay {
    font-size: 0.85rem;
    padding: 0.6rem;
  }
}

.starburst-text {
  text-align: center;
  color: white;
  font-size: 1rem;
  line-height: 1.5;
}
.starburst-text strong {
  font-weight: 700;
}

.cat-illustration {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .cat-illustration {
    justify-content: center;
  }
}

.cat-img {
  width: 300px;
  height: auto;
}
@media (max-width: 768px) {
  .cat-img {
    width: 250px;
  }
}
@media (max-width: 480px) {
  .cat-img {
    width: 200px;
  }
}

.body-text {
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.newsletter-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}
.newsletter-list li {
  margin-bottom: 0.5rem;
  position: relative;
}
.newsletter-list li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FAB51C;
}

.cta-button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #EC6E2D;
  color: white;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  border: 3px solid #344EA1;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: rgb(233.884279476, 93.8537117904, 21.615720524);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .top-illustration-wrapper {
    top: -5vh;
    right: -8vw;
  }
  .tablet-illustration {
    width: 200px;
  }
  .intro-heading {
    font-size: 1.4rem;
  }
  .intro-subtext {
    font-size: 1rem;
  }
  .section__subheading {
    font-size: 1.6rem;
  }
  .action-title {
    font-size: 1.1rem;
  }
  .action-text {
    font-size: 0.95rem;
  }
  .faq-content {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .top-illustration-wrapper {
    top: -2vh;
    right: -12vw;
  }
  .tablet-illustration {
    width: 160px;
  }
  .intro-heading {
    font-size: 1.2rem;
  }
  .intro-subtext {
    font-size: 0.95rem;
  }
  .section__subheading {
    font-size: 1.4rem;
  }
  .action-title {
    font-size: 1rem;
  }
  .action-text {
    font-size: 0.9rem;
  }
  .faq-content {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=style.css.map */