/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  background: #E6F3EE;
  color: #2E3A36;
  line-height: 1.7;
}

/* =========================
   NAV BAR (STABLE)
========================= */
nav {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-logo {
  font-weight: 600;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #2E3A36;
  font-size: 20px; /* Increased font size for mobile devices */
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #8FBFB0;
}

/* =========================
   HERO (UNCHANGED STRUCTURE)
========================= */
.hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(180deg, #F4FBF8, #E6F3EE);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* 🌈 RAINBOW EFFECT (FINAL, SAFE, ISOLATED) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.12),     /* Red */
    rgba(255, 165, 0, 0.12),   /* Orange */
    rgba(255, 255, 0, 0.12),   /* Yellow */
    rgba(0, 160, 120, 0.12),   /* Green */
    rgba(0, 120, 255, 0.12),   /* Blue */
    rgba(138, 43, 226, 0.12)   /* Violet */
  );
  background-size: 300% 100%;
  animation: heroRainbow 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Keep hero content above rainbow */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 10px 32px;
}

@keyframes heroRainbow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   HERO CONTENT
========================= */
.hero-content img {
  width: 720px;
  margin-bottom: 32px;
  background: transparent;
  max-width: 100%;
  height: auto;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-content p {
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto 44px;
}

/* =========================
   BUTTONS
========================= */
button {
  background: #8FBFB0;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  cursor: pointer;
}

.button-link {
  display: inline-block;
  background: #8FBFB0;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Stack hero buttons and add spacing */
.hero .button-link { display: block; }
.hero .button-link + .button-link { margin-top: 12px; }


/* =========================
   SECTIONS
========================= */
section {
  max-width: 1100px;
  margin: auto;
  padding: 100px 32px;
  text-align: center;
}

h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

h2 {
  font-size: 32px;
  text-align: center;
}

/* =========================
   CARDS
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: linear-gradient(135deg, #7DC4B8 0%, #66B5A8 100%);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 3px solid #6a9a8a;
  color: #2E3A36;
}

.card:nth-child(1) {
  background: linear-gradient(135deg, #FFB3BA 0%, #FF9BA5 100%);
}

.card:nth-child(2) {
  background: linear-gradient(135deg, #FFCAB1 0%, #FFB89A 100%);
}

.card:nth-child(3) {
  background: linear-gradient(135deg, #FFFFBA 0%, #FFFFA0 100%);
}

.card:nth-child(4) {
  background: linear-gradient(135deg, #BAE1FF 0%, #A0D8FF 100%);
}

.card:nth-child(5) {
  background: linear-gradient(135deg, #D4BAFF 0%, #C5A0FF 100%);
}

.card:nth-child(6) {
  background: linear-gradient(135deg, #BAE1BA 0%, #A0D8A0 100%);
}

.card:nth-child(7) {
  background: linear-gradient(135deg, #FFCAB1 0%, #FFB89A 100%);
}

.card h3 {
  color: #2E3A36;
}

.card p {
  color: #2E3A36;
}

/* =========================
   ABOUT PAGE
========================= */
.about-intro {
  max-width: 1200px;
  margin: auto;
  padding: 100px 32px;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h1 {
  font-size: 44px;
  margin-bottom: 12px;
  color: #2E3A36;
}

.role {
  font-size: 20px;
  color: #8FBFB0;
  margin-bottom: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-card {
  background: linear-gradient(135deg, #BAE1BA 0%, #A0D8A0 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid #6a9a8a;
  text-align: left;
  color: #2E3A36;
}

.about-card:nth-child(1) {
  background: linear-gradient(135deg, #BAE1FF 0%, #A0D8FF 100%);
}

.about-card:nth-child(2) {
  background: linear-gradient(135deg, #BAE1BA 0%, #A0D8A0 100%);
}

.about-card h2 {
  color: #2E3A36;
}

.about-card p {
  color: #2E3A36;
}

.qual-list {
  list-style-position: inside;
  color: #2E3A36;
  line-height: 2;
  margin: 0;
  padding: 0;
}

.qual-list li {
  margin-bottom: 8px;
}

.photo-box {
  background: linear-gradient(135deg, #7DAFCD 0%, #66A0BD 100%);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 24px;
  aspect-ratio: 4 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 3px solid #6a9a8a;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.about-section h2 {
  font-size: 36px;
  color: #2E3A36;
  margin-bottom: 40px;
}

.issues-card {
  background: linear-gradient(135deg, #B8A366 0%, #9D8B5C 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 6px solid #8FBFB0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #2E3A36;
}

.issues-card p {
  color: #2E3A36;
}

.approach-content {
  max-width: 900px;
  margin: 0 auto;
}

.approach-card {
  background: linear-gradient(135deg, #B8D4BA 0%, #A0C9A0 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid #6a9a8a;
  text-align: center;
  margin-bottom: 32px;
  color: #2E3A36;
}

.approach-card p {
  color: #2E3A36;
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.modality-card {
  background: linear-gradient(135deg, #7DC4B8 0%, #66B5A8 100%);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 3px solid #6a9a8a;
  text-align: center;
  color: #2E3A36;
}

.modality-card:nth-child(1) {
  background: linear-gradient(135deg, #FFB3BA 0%, #FF9BA5 100%);
}

.modality-card:nth-child(2) {
  background: linear-gradient(135deg, #FFCAB1 0%, #FFB89A 100%);
}

.modality-card:nth-child(3) {
  background: linear-gradient(135deg, #FFFFBA 0%, #FFFFA0 100%);
}

.modality-card:nth-child(4) {
  background: linear-gradient(135deg, #BAE1FF 0%, #A0D8FF 100%);
}

.modality-card:nth-child(5) {
  background: linear-gradient(135deg, #D4BAFF 0%, #C5A0FF 100%);
}

.modality-card:nth-child(6) {
  background: linear-gradient(135deg, #FFCAB1 0%, #FFB89A 100%);
}

.modality-card h3 {
  font-size: 18px;
  color: #2E3A36;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.modality-card p {
  color: #2E3A36;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-intro {
    padding: 60px 20px;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-header h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .role {
    font-size: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: auto;
  }
  
  .photo-box {
    aspect-ratio: auto;
    max-height: 500px;
  }

  .about-card {
    padding: 24px;
  }

  .about-card h2 {
    font-size: 20px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .issues-card {
    padding: 24px;
  }

  .approach-card {
    padding: 24px;
  }

  .modalities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modality-card {
    padding: 20px;
  }

  .modality-card h3 {
    font-size: 16px;
  }

  .modality-card p {
    font-size: 14px;
  }
}

/* =========================
   BANKING DETAILS
========================= */
.banking-details {
  margin-top: 80px;
}

.banking-details h2 {
  margin-bottom: 32px;
  color: #2E3A36;
}

.banking-card {
  background: linear-gradient(135deg, #B8D4BA 0%, #A0C9A0 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #8FBFB0;
  border-top: 3px solid #6a9a8a;
  border-right: 3px solid #6a9a8a;
  border-bottom: 3px solid #6a9a8a;
  text-align: center;
  color: #2E3A36;
}

.banking-info p {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2E3A36;
}

.banking-info p strong {
  color: #2E3A36;
  font-weight: 600;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  margin-top: 80px;
}

.contact-section h2 {
  margin-bottom: 12px;
  color: #2E3A36;
}

.contact-section > p {
  margin-bottom: 40px;
  color: #666;
  font-size: 16px;
}

.contact-info-box {
  background: linear-gradient(135deg, #7DAFCD 0%, #66A0BD 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 3px solid #6a9a8a;
  text-align: center;
  color: #2E3A36;
}

.contact-info-box h3 {
  margin-top: 0;
  margin-bottom: 24px;
  color: #2E3A36;
  font-size: 20px;
}

.contact-info-box p {
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #2E3A36;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2E3A36;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: #2E3A36;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8FBFB0;
  box-shadow: 0 0 0 3px rgba(143, 191, 176, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background: #8FBFB0;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #7aaca0;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================
   BUBBLE GAME
========================= */
.game-section {
  background: linear-gradient(135deg, #6FA876 0%, #5A9361 100%);
  border-radius: 12px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 3px solid #6a9a8a;
}

.disclaimer-box {
  background: transparent;
  border: none;
  padding: 16px 0;
  border-radius: 0;
  margin-top: 16px;
  font-size: 14px;
  color: #2E3A36;
  text-align: center;
}

.disclaimer-box p {
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  color: #2E3A36;
}

.game-header {
  text-align: center;
  margin-bottom: 40px;
}

.game-header h2 {
  margin: 0 0 12px 0;
  color: #2E3A36;
  font-size: 32px;
}

.game-header p {
  color: #2E3A36;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.game-stats {
  font-size: 18px;
  color: #2E3A36;
  font-weight: 600;
}

.bubble-game-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(180deg, #F9FCFB 0%, #F4FBF8 100%);
  border-radius: 12px;
  border: 3px solid #6a9a8a;
  margin-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1), inset -2px -2px 4px rgba(0,0,0,0.1);
  transition: transform 0.1s ease;
  border: 2px solid rgba(255,255,255,0.6);
}

.bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15), inset -2px -2px 4px rgba(0,0,0,0.1);
}

.bubble.popped {
  animation: popBubble 0.3s ease-out;
}

@keyframes popBubble {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.game-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.reset-btn {
  background: #8FBFB0;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reset-btn:hover {
  background: #7aaca0;
}

.therapy-room-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin: 32px auto;
  display: block;
}

/* =========================
   FOOTER
========================= */
.page-footer {
  background: white;
  border-top: 2px solid #E0E8E6;
  padding: 48px 32px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-quote {
  font-size: 18px;
  color: #8FBFB0;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.6;
  font-style: italic;
}

.footer-practice {
  font-size: 14px;
  color: #2E3A36;
  margin: 0;
  font-weight: 600;
}

/* =========================
   QUOTE STYLING
========================= */
.main-quote {
  font-size: 28px;
  font-weight: 600;
  color: #2E3A36;
  margin: 32px auto;
  max-width: 700px;
  line-height: 1.8;
  font-style: italic;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(143, 191, 176, 0.15) 0%, rgba(106, 154, 138, 0.1) 100%);
  border-left: 6px solid #8FBFB0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(143, 191, 176, 0.2);
  position: relative;
}

.main-quote::before {
  content: '"';
  font-size: 48px;
  color: #8FBFB0;
  opacity: 0.6;
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 0;
}

.intro-quote {
  font-size: 22px;
  font-weight: 600;
  color: #2E3A36;
  margin: 0 auto 48px;
  max-width: 800px;
  line-height: 1.8;
  font-style: italic;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(143, 191, 176, 0.12) 0%, rgba(106, 154, 138, 0.08) 100%);
  border-left: 5px solid #6a9a8a;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(106, 154, 138, 0.15);
}

.intro-quote::before {
  content: '"';
  font-size: 40px;
  color: #6a9a8a;
  opacity: 0.5;
  position: relative;
  right: 8px;
  line-height: 0;
}

.therapy-quote {
  font-size: 20px;
  font-weight: 600;
  color: #2E3A36;
  margin: 36px auto;
  max-width: 700px;
  line-height: 1.8;
  font-style: italic;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(143, 191, 176, 0.1) 0%, rgba(106, 154, 138, 0.06) 100%);
  border-left: 5px solid #6a9a8a;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(106, 154, 138, 0.12);
}

.therapy-list {
  text-align: left;
  max-width: 700px;
  margin: 24px auto;
  list-style-position: inside;
  line-height: 2;
}

.therapy-list li {
  margin-bottom: 12px;
  color: #2E3A36;
}

.therapy-list strong {
  color: #6a9a8a;
}

/* =========================
   OUT OF OFFICE / CRISIS SECTION
========================= */
.out-of-office-section {
  max-width: 1100px;
  margin: auto;
  padding: 100px 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(143, 191, 176, 0.08) 0%, rgba(106, 154, 138, 0.05) 100%);
  border-radius: 16px;
}

.out-of-office-section h2 {
  font-size: 50px;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 24px;
  text-decoration: none;
}

.out-of-office-section h3 {
  font-size: 24px;
  color: #8FBFB0;
  margin-top: 40px;
  margin-bottom: 24px;
}

.out-of-office-section > p {
  font-size: 16px;
  color: #2E3A36;
  margin-bottom: 32px;
  line-height: 1.8;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px auto;
  max-width: 1000px;
}

.crisis-card {
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.crisis-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.crisis-card p {
  font-size: 16px;
  margin: 8px 0;
  color: #1a1a1a;
  line-height: 1.6;
}

.gbv-card {
  background: linear-gradient(135deg, #B8A366 0%, #9D8B5C 100%);
}

.saartjie-card {
  background: linear-gradient(135deg, #B8D4BA 0%, #A0C9A0 100%);
}

.lifeline-card {
  background: linear-gradient(135deg, #7DC4B8 0%, #66B5A8 100%);
}

.aids-card {
  background: linear-gradient(135deg, #6FA876 0%, #5A9361 100%);
}

.pride-card {
  background: linear-gradient(135deg, #7DAFCD 0%, #66A0BD 100%);
}
.out-of-office-quote {
  font-size: 20px;
  font-weight: 600;
  color: #2E3A36;
  margin: 36px auto;
  max-width: 700px;
  line-height: 1.8;
  font-style: italic;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(143, 191, 176, 0.1) 0%, rgba(106, 154, 138, 0.06) 100%);
  border-left: 5px solid #6a9a8a;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(106, 154, 138, 0.12);
}

/* =========================
   MOBILE RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  /* Navigation */
  .nav-inner {
    padding: 12px 16px;
    gap: 12px;
  }

  .nav-logo {
    font-size: 16px;
    flex-basis: 100%;
  }

  .nav-links {
    flex-basis: 100%;
    gap: 12px;
    justify-content: center;
  }

  .nav-links a {
    font-size: 20px; /* Increased font size for mobile devices */
  }

  /* Hero Section */
  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-content img {
    width: 280px;
    margin-bottom: 24px;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  /* Sections */
  section {
    padding: 50px 20px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .card {
    padding: 24px;
    border-radius: 12px;
  }

  /* Buttons */
  .button-link,
  button {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }

  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .photo-box {
    max-height: 400px;
    aspect-ratio: auto;
  }

  /* Banking & Contact */
  .banking-details {
    margin-top: 50px;
  }

  .banking-card,
  .contact-info-box {
    padding: 24px;
  }

  .banking-info p,
  .contact-info-box p {
    font-size: 14px;
  }

  .contact-section {
    margin-top: 50px;
  }

  .contact-section h2 {
    font-size: 24px;
  }

  /* Forms */
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Bubble Game */
  .game-section {
    padding: 24px;
    margin: 24px 20px;
  }

  .game-header {
    margin-bottom: 24px;
  }

  .game-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .game-header p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .game-stats {
    font-size: 16px;
  }

  .bubble-game-container {
    height: 300px;
    margin-bottom: 16px;
  }

  .reset-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Footer */
  .page-footer {
    padding: 32px 20px;
    margin-top: 50px;
  }

  .footer-quote {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-practice {
    font-size: 12px;
  }

  /* Quote Styling (Tablet) */
  .main-quote {
    font-size: 22px;
    padding: 20px 24px;
    margin: 24px auto;
  }

  .main-quote::before {
    font-size: 36px;
    top: -8px;
    left: 12px;
  }

  .intro-quote {
    font-size: 18px;
    padding: 16px 20px;
    margin-bottom: 40px;
  }

  .intro-quote::before {
    font-size: 32px;
    right: 6px;
  }

  /* Therapy Quote (Tablet) */
  .therapy-quote {
    font-size: 18px;
    padding: 16px 20px;
    margin: 28px auto;
  }

  .therapy-list {
    font-size: 16px;
    margin: 20px auto;
  }

  .therapy-list li {
    margin-bottom: 10px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  /* Navigation */
  .nav-inner {
    padding: 10px 12px;
  }

  .nav-logo {
    font-size: 14px;
  }

  .nav-links {
    gap: 8px;
    justify-content: space-between;
  }

  .nav-links a {
    font-size: 12px;
  }

  /* Hero Section */
  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 40px 15px;
  }

  .hero-content img {
    width: 200px;
    margin-bottom: 16px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  /* Sections */
  section {
    padding: 40px 15px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 16px;
  }

  /* Cards */
  .card-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .card {
    padding: 18px;
    border-radius: 10px;
  }

  .card h3 {
    margin-bottom: 12px;
  }

  .card p {
    font-size: 14px;
  }

  /* Buttons */
  .button-link,
  button {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* About Page */
  .about-intro {
    padding: 40px 15px;
  }

  .about-header h1 {
    font-size: 24px;
  }

  .role {
    font-size: 14px;
  }

  .about-section {
    padding: 40px 15px;
  }

  .about-section h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .about-card {
    padding: 18px;
  }

  .about-card h2 {
    font-size: 18px;
  }

  .qual-list {
    font-size: 14px;
  }

  .issues-card {
    padding: 18px;
    border-left: 4px solid #8FBFB0;
  }

  .issues-card p {
    font-size: 14px;
  }

  .approach-card {
    padding: 18px;
  }

  .approach-card p {
    font-size: 14px;
  }

  .modality-card {
    padding: 16px;
  }

  .modality-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .modality-card p {
    font-size: 13px;
  }

  .photo-box {
    max-height: 300px;
    padding: 12px;
  }

  /* Banking & Contact */
  .banking-card,
  .contact-info-box {
    padding: 16px;
    border-radius: 10px;
  }

  .banking-info p,
  .contact-info-box p {
    font-size: 13px;
    margin: 12px 0;
  }

  .contact-info_box h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  /* Forms */
  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 6px;
  }

  .submit-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Bubble Game */
  .game-section {
    padding: 16px;
    margin: 16px 12px;
    border-radius: 10px;
  }

  .game-header h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .game-header p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .game-stats {
    font-size: 14px;
  }

  .bubble-game-container {
    height: 250px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .reset-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Disclaimer */
  .disclaimer-box {
    padding: 12px 0;
    font-size: 12px;
    margin-top: 12px;
  }

  /* Footer */
  .page-footer {
    padding: 24px 15px;
    margin-top: 40px;
  }

  .footer-quote {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-practice {
    font-size: 11px;
  }

  /* Quote Styling (Mobile) */
  .main-quote {
    font-size: 18px;
    padding: 16px 18px;
    margin: 20px auto;
    border-left: 5px solid #8FBFB0;
  }

  .main-quote::before {
    font-size: 28px;
    top: -6px;
    left: 10px;
  }

  .intro-quote {
    font-size: 16px;
    padding: 14px 16px;
    margin-bottom: 32px;
    border-left: 4px solid #6a9a8a;
  }

  .intro-quote::before {
    font-size: 24px;
    right: 4px;
  }

  /* Therapy Quote (Mobile) */
  .therapy-quote {
    font-size: 16px;
    padding: 14px 16px;
    margin: 24px auto;
    border-left: 4px solid #6a9a8a;
  }

  .therapy-list {
    font-size: 14px;
    margin: 16px auto;
    padding-left: 16px;
  }

  .therapy-list li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  /* Out of Office Section (Mobile) */
  .out-of-office-section {
    padding: 40px 15px;
  }

  .out-of-office-section h2 {
    font-size: 22px;
  }

  .out-of-office-section h3 {
    font-size: 18px;
    margin-top: 28px;
  }

  .out-of-office-section > p {
    font-size: 14px;
  }

  .resource-card {
    padding: 18px;
    border-left: 4px solid #8FBFB0;
  }

  .resource-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .out-of-office-quote {
    font-size: 18px;
    padding: 16px 20px;
    margin: 28px auto;
  }

  /* Out of Office Section (Tablet) */
  .out-of-office-section {
    padding: 60px 20px;
  }

  .out-of-office-section h2 {
    font-size: 28px;
  }

  .out-of-office-section h3 {
    font-size: 20px;
    margin-top: 32px;
  }

  .resource-card {
    padding: 24px;
  }

  .resource-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .out-of-office-quote {
    font-size: 18px;
    padding: 16px 20px;
    margin: 28px auto;
  }
}