* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #111;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ==========================
   HEADER
========================== */

header {
  width: 100%;
  background: #f5f2f2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo img {
  height: 105px;
  width: auto;
}

/* NAV */

nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

nav ul li a {
  color: #111;
  font-size: 1.08rem;
  font-weight: 700;
  transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #00897b;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #111;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* MOBILE */

@media (max-width: 991px) {
  .header-container {
    height: 95px;
  }

  .logo img {
    height: 75px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 95px;
    left: -100%;
    width: 100%;
    background: #fff;
    transition: 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
    padding: 35px 0;
  }

  nav ul li a {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 65px;
  }
}

/* ==========================
HERO
========================== */

.hero {
  width: 95%;
  max-width: 1600px;
  margin: 40px auto;
  position: relative;
  border-radius: 35px;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 650px;
}

.hero-content h1 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
}

.hero-content p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #00897b;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #00695c;
}

/* DOTS */

.slider-dots {
  position: absolute;
  right: 80px;
  bottom: 40px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 35px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50px;
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* MOBILE */

@media (max-width: 991px) {
  .slide img {
    height: 500px;
  }

  .hero-content {
    left: 30px;
    right: 30px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .slider-dots {
    right: 30px;
  }
}

/* ==========================
WELCOME
========================== */

.welcome {
  padding: 100px 0;
  background: #f8fbfa;
}

.welcome-box {
  max-width: 850px;
  margin: auto;
  background: #ffffff;
  padding: 70px;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.welcome-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(0, 137, 123, 0.08);
  border-radius: 50%;
}

.welcome-box h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 30px;
}

.welcome-box p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

.welcome-box a {
  color: #00897b;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid #00897b;
  transition: 0.3s;
}

.welcome-box a:hover {
  color: #00695c;
  border-color: #00695c;
}

/* ==========================
WELCOME
========================== */

.welcome {
  padding: 120px 0 100px;
  background: #f8fbfa;
}

.welcome-box {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 70px;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.welcome-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(0, 137, 123, 0.08);
  border-radius: 50%;
}

.welcome-box h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 30px;
}

.welcome-box p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

.welcome-box a {
  color: #00897b;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid #00897b;
  transition: 0.3s;
}

.welcome-box a:hover {
  color: #00695c;
  border-color: #00695c;
}

/* ==========================
WELCOME RESPONSIVE
========================== */

@media (max-width: 991px) {
  .welcome {
    padding: 90px 0 80px;
  }

  .welcome-box {
    width: 90%;
    padding: 45px 30px;
    border-radius: 30px;
  }

  .welcome-box h2 {
    font-size: 2.2rem;
  }

  .welcome-box p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==========================
OUR STORY
========================== */

.story {
  padding: 100px 0;
  background: #ffffff;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.story-content span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.story-content h2 {
  font-size: 3.8rem;
  font-weight: 800;
  margin: 15px 0 30px;
  color: #111;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.story-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 35px;
  background: #00897b;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.story-btn:hover {
  background: #00695c;
}

.story-image img {
  border-radius: 35px;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================
OUR STORY RESPONSIVE
========================== */

@media (max-width: 991px) {
  .story {
    padding: 80px 0;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-content h2 {
    font-size: 2.7rem;
  }

  .story-content p {
    font-size: 1rem;
  }

  .story-image img {
    height: 400px;
  }
}

/* ==========================
VISION - MISSION - MOTTO
========================== */

.values {
  padding: 100px 0;
  background: #f8fbfa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
}

.value-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

/* ==========================
VALUES RESPONSIVE
========================== */

@media (max-width: 991px) {
  .values {
    padding: 80px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 35px 25px;
  }

  .value-card h3 {
    font-size: 1.5rem;
  }

  .value-card p {
    font-size: 1rem;
  }
}

/* ==========================
OUR CORE
========================== */

.core {
  padding: 100px 0;
  background: #ffffff;
}

.core-heading {
  text-align: center;
  margin-bottom: 60px;
}

.core-heading span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.core-heading h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #111;
  margin-top: 10px;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-card {
  background: #f8fbfa;
  padding: 45px 35px;
  border-radius: 30px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #e5f2ef;
}

.core-card:hover {
  transform: translateY(-8px);
  background: #00897b;
}

.core-number {
  width: 65px;
  height: 65px;
  margin: 0 auto 25px;
  background: #00897b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.core-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  line-height: 1.5;
}

.core-card:hover .core-number {
  background: #fff;
  color: #00897b;
}

.core-card:hover h3 {
  color: #fff;
}

/* ==========================
OUR CORE RESPONSIVE
========================== */

@media (max-width: 991px) {
  .core {
    padding: 80px 0;
  }

  .core-heading h2 {
    font-size: 2.8rem;
  }

  .core-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
STRATEGIC FRAMEWORK
========================== */

.framework {
  padding: 100px 0;
  background: #ffffff;
}

.framework-heading {
  margin-bottom: 45px;
}

.framework-heading span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.framework-heading p {
  max-width: 1000px;
  margin-top: 15px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}

.accordion-item {
  margin-bottom: 20px;
}

.accordion-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #111;
  border-radius: 50px;
  padding: 25px 35px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #111;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: left;
}

.accordion-btn span {
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.accordion-item.active .accordion-btn {
  border-color: #00897b;
  color: #00897b;
}

.accordion-item.active .accordion-btn span {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 35px 10px 20px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content > p {
  max-width: 950px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pillar-card {
  background: #f8fbfa;
  padding: 35px 30px;
  border-radius: 25px;
  border-left: 5px solid #00897b;
}

.pillar-card h3,
.pillar-list h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
}

.pillar-card p,
.pillar-list p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.pillar-list {
  display: grid;
  gap: 25px;
}

.pillar-list div {
  background: #f8fbfa;
  padding: 30px;
  border-radius: 25px;
  border-left: 5px solid #00897b;
}

/* ==========================
FRAMEWORK RESPONSIVE
========================== */

@media (max-width: 991px) {
  .framework {
    padding: 80px 0;
  }

  .framework-heading p {
    font-size: 1rem;
  }

  .accordion-btn {
    padding: 22px 25px;
    font-size: 1.05rem;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-list div {
    padding: 25px;
  }
}

/* ==========================
FOOTER
========================== */

.footer {
  padding: 70px 0 25px;
  background: #00897b;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  width: 170px;
  height: auto;
  background: #fff;
  padding: 12px;
  border-radius: 20px;
}

.footer-address {
  text-align: center;
}

.footer-contact {
  text-align: right;
}

.footer-address h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-address p,
.footer-contact p,
.footer-contact a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 45px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #e9fffb;
}

/* ==========================
FOOTER RESPONSIVE
========================== */

@media (max-width: 991px) {
  .footer {
    padding: 60px 0 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-contact {
    text-align: center;
  }
}

/* ==========================
CONTACT HERO
========================== */

.contact-hero {
  position: relative;
  padding: 140px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../img/contact-banner.png") center center/cover no-repeat;
}

.contact-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-content h1 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact-hero-content p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.9;
}

/* ==========================
CONTACT HERO RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-hero {
    padding: 100px 0;
  }

  .contact-hero-content h1 {
    font-size: 2.8rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==========================
CONTACT INFORMATION
========================== */

.contact-info {
  padding: 100px 0;
  background: #f8fbfa;
}

.contact-info .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-info .section-title span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-info .section-title h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  margin: 15px 0;
}

.contact-info .section-title p {
  max-width: 700px;
  margin: auto;
  color: #555;
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #111;
}

.contact-card p,
.contact-card a {
  color: #555;
  line-height: 1.8;
}

.contact-card a:hover {
  color: #00897b;
}

/* ==========================
CONTACT INFORMATION RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-info {
    padding: 80px 0;
  }

  .contact-info .section-title h2 {
    font-size: 2.5rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================
CONTACT FORM
========================== */

/* ==========================
CONTACT FORM
========================== */

.contact-form-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-form-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-section .section-title span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-form-section .section-title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 10px 0 15px;
}

.contact-form-section .section-title p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 18px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
}

.form-group textarea {
  height: 180px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00897b;
}

.form-btn {
  display: block;
  margin: 10px auto 0;
  border: none;
  background: #00897b;
  color: #fff;
  padding: 18px 55px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  background: #00695c;
}

.success-message {
  display: none;
  margin-top: 25px;
  text-align: center;
  color: #00897b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form-section .section-title h2 {
    font-size: 2.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================
OUR WORK HERO
========================== */

.work-hero {
  padding: 40px 0 80px;
}

.work-hero-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 35px;
}

/* ==========================
OUR WORK HERO RESPONSIVE
========================== */

@media (max-width: 991px) {
  .work-hero {
    padding: 30px 0 60px;
  }

  .work-hero-image img {
    height: 400px;
    border-radius: 25px;
  }
}

/* ==========================
YOUTH & EDUCATION
========================== */

.youth-education {
  padding: 100px 0;
  background: #ffffff;
}

.youth-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.youth-content span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.youth-content h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #111;
  margin: 15px 0 35px;
}

.youth-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

/* ==========================
YOUTH & EDUCATION RESPONSIVE
========================== */

@media (max-width: 991px) {
  .youth-education {
    padding: 80px 0;
  }

  .youth-content h2 {
    font-size: 2.8rem;
  }

  .youth-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==========================
FEATURED PROJECT
========================== */

.featured-project {
  padding: 100px 0;
}

.project-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.project-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 35px;
}

.project-content span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.project-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 15px 0 25px;
}

.project-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 30px;
  text-align: justify;
}

/* ==========================
FEATURED PROJECT RESPONSIVE
========================== */

@media (max-width: 991px) {
  .featured-project {
    padding: 80px 0;
  }

  .project-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-content h2 {
    font-size: 2.4rem;
  }

  .project-image img {
    height: 400px;
  }
}

/* ==========================
DISABILITY INCLUSION
========================== */

.disability {
  padding: 100px 0 70px;
  background: #ffffff;
}

.disability-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.disability-content span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.disability-content h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #111;
  margin: 15px 0 35px;
}

.disability-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

/* ==========================
DISABILITY IMAGE
========================== */

.disability-image-section {
  padding-bottom: 100px;
}

.disability-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 35px;
}

/* ==========================
DISABILITY RESPONSIVE
========================== */

@media (max-width: 991px) {
  .disability {
    padding: 80px 0 50px;
  }

  .disability-content h2 {
    font-size: 2.8rem;
  }

  .disability-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .disability-image-section {
    padding-bottom: 80px;
  }

  .disability-image img {
    height: 450px;
  }
}

/* ==========================
REHABILITATION HERO
========================== */

.rehab-hero {
  padding: 40px 0 80px;
}

.rehab-hero-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 35px;
}

/* ==========================
REHABILITATION HERO RESPONSIVE
========================== */

@media (max-width: 991px) {
  .rehab-hero {
    padding: 30px 0 60px;
  }

  .rehab-hero-image img {
    height: 450px;
    border-radius: 25px;
  }
}

/* ==========================
REHABILITATION INTRO
========================== */

.rehab-intro {
  padding: 100px 0;
  background: #ffffff;
}

.rehab-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.rehab-content span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.rehab-content h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #111;
  margin: 15px 0 35px;
}

.rehab-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

/* ==========================
REHABILITATION RESPONSIVE
========================== */

@media (max-width: 991px) {
  .rehab-intro {
    padding: 80px 0;
  }

  .rehab-content h2 {
    font-size: 2.8rem;
  }

  .rehab-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==========================
HEALTH UNIT
========================== */

.health-unit {
  padding: 100px 0;
  background: #fff;
}

.health-content {
  max-width: 950px;
  margin: 0 auto 60px;
  text-align: center;
}

.health-content span {
  color: #00897b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.health-content h2 {
  font-size: 4rem;
  font-weight: 800;
  margin: 15px 0 30px;
}

.health-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
}

.health-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 35px;
}

/* ==========================
HEALTH UNIT RESPONSIVE
========================== */

@media (max-width: 991px) {
  .health-unit {
    padding: 80px 0;
  }

  .health-content h2 {
    font-size: 2.8rem;
  }

  .health-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .health-image img {
    height: 450px;
  }
}
