/* === BASE LAYOUT & BRANDING === */
body {
  margin: 0;
  background: #f7f7f7;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

/* Logo + Home Button */
.fixed-logo {
  position: fixed;
  top: 16px;
  left: 20px;
  z-index: 1000;
  display: inline-block;
}
.fixed-logo img {
  width: 120px; /* desktop size */
  height: auto;
  display: block;
}

/* Home icon top-right */
.floating-home {
  position: fixed;
  top: 30px;
  right: 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  border-radius: 40px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s, transform 0.2s;
}
.floating-home:hover {
  background: #fff;
  transform: translateY(-2px);
}
.floating-home:focus-visible {
  outline: 2px solid #2a7b62;
  outline-offset: 3px;
}

/* === ABOUT PAGE === */
.about-container {
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 0 12px;
}

/* Hero Section */
.about-header {
  margin-top: 1rem;
  padding: 2.5rem 16px;
  text-align: center;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(135deg, #e8f9ff, #f7fdff);
}
.about-header h1 {
  margin-top: 0;
  font-size: 2.4rem;
  color: #2c7b90;
}
.about-subtitle {
  font-size: 1.1rem;
  color: #5b7076;
  margin-top: 0.3rem;
}

/* === SECTION STYLES === */
.about-section {
  background: #fff;
  border-radius: 18px;
  margin: 18px 0;
  padding: 26px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.about-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c7b90;
  margin-bottom: 10px;
}
.about-section p {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
}
.about-section strong {
  font-weight: 700;
  color: #000;
}

/* Section Hover - glowing yellow/orange effect */
.about-section:hover {
  box-shadow: 0 4px 16px rgba(255, 165, 0, 0.4);
  transform: translateY(-3px);
  border: 1px solid rgba(255, 193, 7, 0.6);
}

/* Highlighted Section */
.highlight {
  text-align: center;
  background-color: #f3faff;
  border-radius: 15px;
  padding: 2rem;
  font-weight: 600;
  color: #217b86;
}

/* === CTA BUTTON === */
.cta-container {
  text-align: center;
  margin-top: 36px;
}
.cta-button {
  background: #2a7b62;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-button:hover {
  background: #16624b;
  transform: translateY(-1px) scale(1.01);
}
.cta-button:focus-visible {
  outline: 2px solid #2a7b62;
  outline-offset: 3px;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 20px 0;
  color: #444;
  font-size: 0.9rem;
}

/* === RESPONSIVE MOBILE FIXES === */
@media (max-width: 768px) {
  /* Header & Sections */
  .about-header {
    padding: 2.2rem 12px;
  }
  .about-header h1 {
    font-size: 1.9rem;
  }
  .about-container {
    margin: 0 auto 20px;
  }
  .about-section {
    padding: 12px 10px;
    border-radius: 11px;
  }
  .fixed-logo img {
    width: 90px;
  }
  .cta-button {
    width: 98%;
  }

}
