/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
}
/* ===== HEADER (sticky) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e9eef3;
}

.header-inner {
  width: min(1300px, 92%);
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Logo */
.brand img {
  height: 56px;
  display: block;
}

/* Desktop Nav */
.main-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  text-decoration: none;
  color: #0b6ea8;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  padding: 10px 0;
}

.nav-list a:hover {
  opacity: 0.85;
}

/* ===== SIMPLE 3 LINE HAMBURGER ===== */
.hamburger {
  display: none;
  width: 40px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #0b6ea8;
  border-radius: 3px;
}

/* Mobile menu panel */
.mobile-menu {
  border-top: 1px solid #e9eef3;
  background: #fff;
}

.mobile-nav {
  width: min(1300px, 92%);
  margin: 0 auto;
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.m-link {
  text-decoration: none;
  color: #0b6ea8;
  font-weight: 700;
  padding: 10px 6px;
  border-radius: 10px;
}

.m-link:hover {
  background: #f3f8fc;
}

/* ===== RESPONSIVE SWITCH ===== */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    height: 78px;
  }

  .brand img {
    height: 46px;
  }
}

/* ===== HERO (STATIC) ===== */
.hero {
  position: relative;
  width: 100%;
  height: clamp(380px, 70vh, 650px);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  left: clamp(18px, 6vw, 70px);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 680px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 14px;
}

.hero-content p {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 560px;
}

/* Mobile tweaks */
@media (max-width: 680px) {
  .hero-content {
    max-width: 92%;
  }
}

/* ===== WHO WE ARE SECTION ===== */
.about-section {
  background: #f5f5f5;
  padding: 80px 20px;
}

.about-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.about-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.about-line {
  width: 4px;
  height: 38px;
  background: #1e6c9c;
}

.about-heading h2 {
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #1e6c9c;
  margin: 0;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* ===== Header Shadow on Scroll ===== */
.site-header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

/* ===== WHAT WE DO SECTION ===== */
.what-section {
  background: #ffffff;
  padding: 80px 20px;
}

.what-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.what-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e6c9c;
  margin-bottom: 30px;
}

.what-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.what-text a {
  color: #1e6c9c;
  font-weight: 600;
  text-decoration: none;
}

.what-text a:hover {
  text-decoration: underline;
}

/* ===== PURPOSE / MISSION / VALUES ===== */
.values-section {
  background: #f5f5f5;
  padding: 80px 20px;
}

.values-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.value-block {
  margin-bottom: 50px;
}

.green-title {
  color: #79b300;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* Accordion */
.accordion-item {
  border-top: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 600;
  color: #1e6c9c;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding-bottom: 20px;
}

.accordion-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.plus {
  font-size: 24px;
  color: #1e6c9c;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0b6ea8;
  color: #fff;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr; /* left a bit wider */
  align-items: start;
  gap: 60px;
}

/* Left column */
.footer-left {
  text-align: left;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
  display: block;
}

.footer-copy {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Titles + text */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* ===== MOBILE: CENTER EVERYTHING ===== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr; /* stack */
    gap: 30px;
    text-align: center;
    justify-items: center; /* center items in grid */
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  background: #ffffff;
  padding: 70px 20px;
}

.contact-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.contact-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-line {
  width: 4px;
  height: 38px;
  background: #1e6c9c;
}

.contact-heading h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1e6c9c;
  margin: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.contact-card {
  border: 1px solid #e9eef3;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.contact-card h3 {
  margin: 0 0 10px;
  color: #0b6ea8;
  font-size: 18px;
}

.contact-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.contact-card a {
  color: #0b6ea8;
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

.muted {
  opacity: 0.8;
}

/* Inquiry form */
.inquiry-wrap {
  border: 1px solid #e9eef3;
  border-radius: 14px;
  padding: 22px;
  background: #f7fafc;
}

.inquiry-title {
  margin: 0 0 16px;
  color: #1e6c9c;
  font-size: 26px;
  font-weight: 800;
}

.inquiry-form .field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.inquiry-form label {
  font-weight: 700;
  color: #2b2b2b;
}

.inquiry-form input,
.inquiry-form textarea {
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #0b6ea8;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.submit-btn {
  background: #79b300;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.93;
}

/* Success popup */
.form-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e9f7e6;
  color: #1b6b1b;
  border: 1px solid #bfe7bf;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
}

.form-success .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #2aa52a;
  color: #fff;
  font-weight: 900;
}

/* Small note */
.form-note {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

[hidden] {
  display: none !important;
}

/* ===== PHYSIOTHERAPY HERO ===== */
.physio-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;

  background: url("../img/physiotherapy.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.physio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.physio-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.physio-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 20px;
}

.physio-content p {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  margin-bottom: 35px;
}

.physio-btn {
  display: inline-block;
  background: #ffffff;
  color: #0b6ea8;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  transition: 0.3s ease;
}

.physio-btn:hover {
  background: #79b300;
  color: #fff;
}

/* ===== PHYSIOTHERAPY DETAILS ===== */
.physio-details {
  background: #ffffff;
  padding: 80px 20px;
}

.physio-details-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.physio-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}

.physio-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #0b6ea8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-top: 5px;
}

.physio-text h3 {
  color: #1e6c9c;
  font-size: 22px;
  margin-bottom: 12px;
}

.physio-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .physio-item {
    flex-direction: column;
  }

  .physio-icon {
    margin-bottom: 10px;
  }
}

/* ===== ABOUT PHYSIOTHERAPY ===== */
.about-physio {
  background: #f5f5f5;
  padding: 90px 20px;
}

.about-physio-container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-physio-image img {
  width: 100%;
  border-radius: 12px;
}

.about-physio-content h2 {
  color: #1e6c9c;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-physio-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Check list */
.physio-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.physio-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #555;
}

.physio-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #0b6ea8;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 900px) {
  .about-physio-container {
    grid-template-columns: 1fr;
  }
}

/* ===== WHAT TO EXPECT SECTION ===== */
.expect-section {
  background: #fff;
  padding: 90px 20px;
}

.expect-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.expect-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 35px;
}

.expect-icon {
  width: 44px;
  height: 44px;
  border: 2px solid #0b6ea8;
  color: #0b6ea8;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-top: 2px;
}

.expect-head h2 {
  margin: 0 0 10px;
  color: #1e6c9c;
  font-size: 26px;
  font-weight: 800;
}

.expect-head p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  max-width: 980px;
}

/* Steps */
.expect-step {
  margin: 0 0 26px;
}

.expect-step h3 {
  margin: 0 0 8px;
  color: #1e6c9c;
  font-size: 20px;
  font-weight: 800;
}

.expect-step p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  max-width: 980px;
}

/* Mobile */
@media (max-width: 768px) {
  .expect-head {
    grid-template-columns: 1fr;
  }
  .expect-icon {
    margin-bottom: 8px;
  }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-section {
  background: #f7fafc;
  padding: 90px 20px;
}

.why-container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.why-content h2 {
  color: #1e6c9c;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
}

.why-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-list {
  padding-left: 20px;
  margin: 0;
}

.why-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #ffffff;
  padding: 90px 20px;
}

.faq-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  color: #1e6c9c;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid #e3e8ee;
}

.faq-item p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  background: #ffffff;
  padding: 90px 20px;
}

.services-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.service-block {
  margin-bottom: 70px;
}

.service-block h2 {
  color: #1e6c9c;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-block h3 {
  color: #0b6ea8;
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0 12px;
}

.service-block p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-block ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-block li {
  margin-bottom: 10px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
}

/* ===== ONCOLOGY HERO ===== */
.onc-hero {
  position: relative;
  width: 100%;
  height: clamp(380px, 70vh, 650px);
  overflow: hidden;
}

.onc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.onc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.onc-hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  color: #fff;
}

.onc-hero-content h1 {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.onc-hero-content p {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  margin: 0 0 26px;
  max-width: 760px;
}

.onc-hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #0b6ea8;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.onc-hero-btn:hover {
  opacity: 0.92;
}

/* ===== ONCOLOGY SERVICES SECTION ===== */
.onc-services-section {
  background: #ffffff;
  padding: 90px 20px;
}

.onc-services-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.onc-services-section h2 {
  color: #1e6c9c;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.onc-services-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.onc-services-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.onc-services-list li {
  margin-bottom: 14px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
}

/* ===== ONCOLOGY ABOUT SECTION (2 columns) ===== */
.onc-about {
  background: #fff;
  padding: 90px 20px;
}

.onc-about-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.onc-about-title {
  font-size: 34px;
  font-weight: 800;
  color: #1e6c9c;
  margin: 0 0 14px;
  line-height: 1.2;
}

.onc-green-line {
  width: 60px;
  height: 3px;
  background: #79b300;
  margin-bottom: 22px;
}

.onc-about-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  margin-bottom: 22px;
}

/* Button like reference */
.onc-cta {
  display: inline-block;
  background: #0b6ea8;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
}

.onc-cta:hover {
  opacity: 0.92;
}

/* Right content */
.onc-p {
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  margin: 0 0 24px;
}

.onc-subtitle {
  color: #1e6c9c;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
}

.onc-subtitle.big-gap {
  margin-top: 30px;
}

.onc-bullets {
  padding-left: 22px;
  margin: 0 0 28px;
}

.onc-bullets li {
  margin-bottom: 10px;
  color: #555;
  font-size: 16.5px;
  line-height: 1.75;
}

/* Mobile */
@media (max-width: 980px) {
  .onc-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .onc-cta {
    width: fit-content;
  }
}

/* ===== WHY CHOOSE ONCOLOGY SECTION ===== */
.onc-why {
  background: #f4f7f9;
  padding: 90px 20px;
}

.onc-why-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.onc-why-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.onc-why-icon {
  width: 40px;
  height: 40px;
  background: #1e6c9c;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}

.onc-why-head h2 {
  color: #1e6c9c;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}

.onc-why-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  max-width: 900px;
}

.onc-why-list {
  padding-left: 20px;
  margin: 0;
}

.onc-why-list li {
  margin-bottom: 10px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  .onc-why-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== ONCOLOGY FAQ SECTION ===== */
.onc-faq {
  background: #f4f7f9;
  padding: 90px 20px;
}

.onc-faq-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.onc-faq-title {
  text-align: center;
  color: #1e6c9c;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 55px;
}

.onc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* each item */
.onc-faq-item {
  border-top: 1px solid #cfd8df;
  padding-top: 18px;
}

/* question row */
.onc-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  cursor: default; /* static like your screenshot */
  text-align: left;
}

.onc-faq-q span:first-child {
  font-size: 18px;
  font-weight: 800;
  color: #3a3a3a;
  line-height: 1.5;
}

.onc-faq-icon {
  font-size: 26px;
  font-weight: 700;
  color: #444;
  line-height: 1;
  transform: translateY(-2px);
}

/* answer text */
.onc-faq-a {
  padding-top: 10px;
}

.onc-faq-a p {
  margin: 0 0 14px;
  color: #666;
  line-height: 1.8;
  font-size: 16.5px;
}

/* bottom button */
.onc-faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}

.onc-faq-btn {
  background: #0b6ea8;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 16px 34px;
  border-radius: 8px;
  letter-spacing: 0.2px;
}

.onc-faq-btn:hover {
  opacity: 0.92;
}

/* Mobile */
@media (max-width: 900px) {
  .onc-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .onc-faq-title {
    font-size: 30px;
  }
}

/* ===== CORE VALUES ===== */

.core-values-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.core-values-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-values-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.core-values-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
  color: #fff;
  padding: 80px 0;
}

.core-values-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Remove default bullets */
.core-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-values-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 500;
}

.cv-check {
  color: #8bc34a; /* green like screenshot */
  font-size: 22px;
  font-weight: 700;
}

.page-hero {
  background: #f5f5f5;
  padding: 90px 20px;
  text-align: center;
}

.page-hero-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 40px;
  color: #1e6c9c;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: #555;
}

/* ===== BLOG GRID ===== */

.blog-section {
  background: #f5f7fa;
  padding: 80px 20px;
}

.blog-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-img {
  height: 250px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 22px;
  font-weight: 800;
  color: #0b6ea8;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
