/* ================= GLOBAL ================= */
:root {
  --white: #ffffff;
  --black: #111111;
  --green: #2ecc71;
  --accent: #16a085;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}

.header-logo {
  width: 50px;
  border-radius: 8px;
}

.nav a {
  margin: 0 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover, .nav-btn:hover {
  color: var(--green);
}

.nav-btn {
  background: var(--green);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--black);
  border-radius: 2px;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 120px 10%;
  color: var(--black);
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

/* Hero text content */
.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-secondary);
  font-size: 72px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--green);
}

.hero-text {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

/* ================= HOW IT WORKS ================= */
.how {
  padding: 120px 10%;
  background: #ffffff;
  text-align: center;
  color: var(--black);
}

.how-badge {
  display: inline-block;
  background: var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.how-title {
  font-size: 48px;
  margin-bottom: 15px;
}

.how-subtitle {
  color: #555;
  margin-bottom: 50px;
  font-size: 18px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.how-card {
  background: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.how-card-content {
  padding: 20px;
  text-align: left;
}

.step-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

/* ================= PRIVACY ================= */
.privacy {
  padding: 100px 20px;
  background: #f9f9f9;
  color: #1f2d2a;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.privacy-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* Features */
.privacy-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.privacy-feature {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.privacy-feature.reverse {
  flex-direction: row-reverse;
}

.feature-img img {
  width: 500px;
  max-width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-text {
  max-width: 600px;
}

.feature-text .privacy-icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ================= FADE-IN EFFECT ================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .privacy-feature {
    flex-direction: column !important;
    text-align: center;
  }

  .feature-text {
    max-width: 100%;
  }

  .feature-img img {
    width: 100%;
  }
}


/* Features already updated above from previous fix */

/* ================= TRUST & IMPACT ================= */
.trust-section {
  padding: 100px 10%;
  background: #ffffff;
  text-align: center;
  color: var(--black);
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
}

.stat-card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
  width: 200px;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 36px;
  color: var(--green);
  margin-bottom: 10px;
}

/* ================= TESTIMONIALS ================= */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  margin-top: 50px;
}

.testimonial-card {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  color: var(--black);
}

.testimonial-card p {
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* ================= CHATBOT ================= */
.chatbot-card-section {
  padding: 80px 10%;
  background: linear-gradient(90deg,#2ecc71,#16a085);
  text-align: center;
}

.chatbot-card {
  display: inline-block;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  color: #fff;
  transition: transform 0.3s;
}

.chatbot-card:hover {
  transform: scale(1.05);
}

.chatbot-card button {
  margin-top: 20px;
  background: #fff;
  color: #16a085;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.chatbot-card button:hover {
  background: #16a085;
  color: #fff;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #f5f5f5;
  padding: 60px 10%;
  color: var(--black);
}

.footer-column h4 {
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: var(--green);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 18px;
  }

  .header {
    padding: 10px 30px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--white);
    width: 200px;
    padding: 30px 20px;
    gap: 20px;
    transition: 0.3s;
    color: var(--black);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
    color: var(--black);
  }

  .nav-btn {
    display: block;
    color: var(--white);
    background: var(--green);
  }

  .buttons {
    flex-direction: column;
  }

  .how-grid, .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .privacy-feature, .privacy-feature.reverse {
    flex-direction: column;
    text-align: center;
  }

  .privacy-feature img {
    margin-bottom: 20px;
  }
}

.why-choose-section {
  padding: 100px 10%;
  background: #f9f9f9;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ================ HEALTH CONSULTATION SECTION ================ */
.health-consultation {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

.health-consultation .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

.consultation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.consultation-cards .card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.consultation-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.card-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.card-content .btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #0f9d58;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.card-content .btn:hover {
  background-color: #0c7a42;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
}

/* ================ EMERGENCY GUIDANCE SECTION ================ */
.emergency-guidance {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.emergency-guidance .container {
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-guidance .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.emergency-guidance .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: black;
  margin-bottom: 15px;
}

.emergency-guidance .section-header p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Row Layout */
.guidance-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
}

.guidance-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.guidance-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Text */
.guidance-text {
  max-width: 520px;
}

.guidance-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: black;
  margin-bottom: 18px;
}

.guidance-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px) {
  .guidance-row,
  .guidance-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .guidance-text h3 {
    font-size: 1.7rem;
  }

  .guidance-image img {
    max-width: 100%;
  }
}

/* ================ MEDICAL REFERRALS SECTION ================ */
.medical-referrals {
  padding: 100px 20px;
  background-color: #fafafa;
  font-family: 'Inter', sans-serif;
}

.medical-referrals .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.medical-referrals .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.medical-referrals .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #000;
  margin-bottom: 14px;
}

.medical-referrals .section-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ================= GRID ================= */
.referral-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.referral-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= ICON ================= */
.referral-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* ================= TEXT ================= */
.referral-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 14px;
}

.referral-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .referral-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .medical-referrals {
    padding: 70px 16px;
  }

  .referral-grid {
    grid-template-columns: 1fr;
  }

  .medical-referrals .section-header h2 {
    font-size: 2.2rem;
  }
}

/* ================ MENTAL HEALTH SUPPORT SECTION ================ */
.mental-health-support {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.mental-health-support .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.mental-health-support .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.mental-health-support .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #000;
  margin-bottom: 14px;
}

.mental-health-support .section-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ================= GRID ================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.support-card {
  background-color: #fafafa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* ================= ICON ================= */
.support-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* ================= TEXT ================= */
.support-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 14px;
}

.support-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mental-health-support {
    padding: 70px 16px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .mental-health-support .section-header h2 {
    font-size: 2.2rem;
  }
}

/* ================ HOW WE HELP SECTION ================ */
.how-we-help {
  padding: 100px 20px;
  background-color: #fafafa;
  font-family: 'Inter', sans-serif;
}

.how-we-help .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.how-we-help .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.how-we-help .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #000;
  margin-bottom: 14px;
}

.how-we-help .section-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ================= GRID ================= */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.help-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= ICON ================= */
.help-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* ================= TEXT ================= */
.help-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 14px;
}

.help-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-we-help {
    padding: 70px 16px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .how-we-help .section-header h2 {
    font-size: 2.2rem;
  }
}

/* ================ PRIVACY POLICY SECTION ================ */
.privacy-policy {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.privacy-policy .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.privacy-policy .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.privacy-policy .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #000;
  margin-bottom: 14px;
}

.privacy-policy .section-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ================= CONTENT ================= */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-item {
  background-color: #fafafa;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ================= TEXT ================= */
.policy-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 14px;
}

.policy-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .privacy-policy {
    padding: 70px 16px;
  }

  .privacy-policy .section-header h2 {
    font-size: 2.2rem;
  }

  .policy-item {
    padding: 30px 24px;
  }
}

/* =========================
   HEALTH SERVICES SECTION
========================= */
.health-services {
  padding: 60px 20px;
  background-color: #f4f7fc; /* light neutral background */
  color: #333;
}

.health-services .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #0a3d62; /* deep blue for headings */
}

.service-item {
  margin-bottom: 40px;
}

.service-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a3d62;
}

.service-item p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-item ul {
  padding-left: 20px;
}

.service-item ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .health-services {
    padding: 40px 15px;
  }

  .health-services .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .service-item h3 {
    font-size: 1.5rem;
  }
}

/* Health Service Policy Section */
.policy-section {
  background-color: #f9fafa;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.policy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2a7f62; /* calm healthcare green */
  margin-bottom: 40px;
  font-weight: 700;
}

.policy-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.policy-item h3 {
  color: #1f5e46;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.policy-item h4 {
  color: #3b7a64;
  margin: 15px 0 10px 0;
  font-size: 1.2rem;
}

.policy-item p, 
.policy-item ul {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 10px;
}

.policy-item ul {
  padding-left: 20px;
  list-style-type: disc;
}

.policy-item ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-section {
    padding: 40px 15px;
  }

  .policy-item {
    padding: 20px;
  }

  .policy-section .section-title {
    font-size: 1.8rem;
  }
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

.contact-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-section label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #4CAF50;
}

.contact-section .btn-submit {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-section .btn-submit:hover {
  background-color: #45a049;
}


/* Home button at the top of the footer */
.footer-home-btn {
  text-align: center;
  padding: 15px 0;

}

.footer-home-btn .home-btn {
  text-decoration: none;
  color: #ffffff;
  background-color: #1de9b6; /* Light green button */
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer-home-btn .home-btn:hover {
  background-color: #00bfa5;
  transform: scale(1.05);
}
