@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1f3c;
  --blue: #0a5c8a;
  --blue-light: #1278b2;
  --teal: #4ecdc4;
  --teal-dark: #36b5ac;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --grey-100: #eef1f6;
  --grey-300: #d1d9e6;
  --grey-500: #8896a8;
  --grey-700: #4a5568;
  --text: #1a2640;
  --shadow-sm: 0 2px 12px rgba(10, 40, 80, 0.07);
  --shadow-md: 0 6px 28px rgba(10, 40, 80, 0.11);
  --shadow-lg: 0 16px 48px rgba(10, 40, 80, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  padding: 0 5%;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--grey-300);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

nav.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }

nav .logo img { height: 80px; width: auto; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--grey-700);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--blue); background: var(--grey-100); }
.nav-links a.active { color: var(--blue); }

.nav-btn {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em !important;
  transition: all var(--transition) !important;
  box-shadow: 0 2px 10px rgba(10, 92, 138, 0.3) !important;
}

.nav-btn:hover {
  background: var(--teal) !important;
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.4) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(10, 31, 60, 0.88) 0%, rgba(10, 92, 138, 0.82) 60%, rgba(78, 205, 196, 0.4) 100%),
    url('hero.png') center top / 100% auto no-repeat;
  color: var(--white);
  min-height: 93vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08));
  pointer-events: none;
}

.hero-content { max-width: 620px; position: relative; z-index: 1; }

.badge {
  background: rgba(78, 205, 196, 0.22);
  border: 1px solid rgba(78, 205, 196, 0.5);
  color: #a8f0ec;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
}

.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--teal); }

.hero > .hero-content > p {
  font-size: 1.18rem;
  opacity: 0.88;
  margin-bottom: 38px;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.4);
}

.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(78, 205, 196, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10, 92, 138, 0.3);
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(10, 92, 138, 0.4);
}

.full-width { width: 100%; justify-content: center; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 14px 26px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.trust-item:hover { color: var(--teal); }
.trust-item:last-child { border-right: none; }

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 5%; }
.grey { background: var(--off-white); }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}

.section-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-inner > p, .section-inner .section-desc {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.75;
  font-weight: 400;
}

/* ===== SERVICE CARDS ===== */
.cards {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  width: 310px;
  border: 1px solid var(--grey-300);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--grey-100);
}

.card.featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.card.featured:hover { transform: scale(1.03) translateY(-6px); }

.card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 3px 10px rgba(78, 205, 196, 0.4);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card.featured .card-icon-wrap { background: rgba(78, 205, 196, 0.12); }

.card h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card > p { color: var(--grey-500); font-size: 0.93rem; margin-bottom: 20px; line-height: 1.6; }

.price-box {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 16px 0;
  border: 1px solid var(--grey-100);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.91rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}

.price-row:last-child { border-bottom: none; }
.price-row strong { color: var(--blue); font-size: 1.05rem; font-weight: 700; font-family: 'Outfit', sans-serif; }

.duration {
  color: var(--grey-500);
  font-size: 0.83rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== MEET THE PHYSIO ===== */
.meet-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  text-align: left;
}

.meet-photo { flex-shrink: 0; }

.physio-photo {
  width: 360px;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--teal);
}

.meet-text { max-width: 540px; }

.meet-text h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.meet-text p { color: var(--grey-700); margin-bottom: 14px; font-size: 0.98rem; line-height: 1.75; }

.meet-commitment { margin-top: 24px; }

.meet-commitment h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.credentials li {
  font-size: 0.93rem;
  color: var(--grey-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.credentials li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(78, 205, 196, 0.18);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234ecdc4' d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.commitment-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.commitment-box::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 80px;
  color: rgba(255,255,255,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.commitment-box p {
  color: rgba(255,255,255,0.93) !important;
  font-size: 0.94rem !important;
  margin: 0 !important;
  text-align: left !important;
  line-height: 1.7;
  position: relative;
}

.commitment-box p strong { color: var(--white); font-family: 'Outfit', sans-serif; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  width: 310px;
  border: 1px solid var(--grey-300);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars { font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial p {
  color: var(--grey-700);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--grey-100);
  padding-top: 16px;
}

.testimonial-author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
}

.testimonial strong { color: var(--navy); font-size: 0.88rem; font-weight: 600; display: block; }
.testimonial .loc { color: var(--grey-500); font-size: 0.8rem; font-style: normal; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--grey-300);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 300;
}

.faq-question.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--grey-500);
  font-size: 0.94rem;
  text-align: left;
  margin: 0;
  line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
  text-align: left;
}

.contact-info { min-width: 240px; max-width: 300px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item strong { font-weight: 600; color: var(--navy); font-size: 0.88rem; display: block; font-family: 'Outfit', sans-serif; }
.contact-info-item span { color: var(--grey-500); font-size: 0.92rem; }

.contact-divider { height: 1px; background: var(--grey-300); margin: 24px 0; }

.contact-form {
  min-width: 300px;
  max-width: 480px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey-500); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 92, 138, 0.1);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 50px 5%;
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-logo {
  height: 120px;
  margin-bottom: 18px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.15));
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 22px auto;
  max-width: 300px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

footer p { font-size: 0.84rem; margin: 5px 0; line-height: 1.6; }
footer .copyright { margin-top: 16px; font-size: 0.78rem; opacity: 0.45; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 14px 5%;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .nav-links a { font-size: 0.85rem; padding: 6px 10px; }

  .hero { min-height: auto; padding: 90px 5% 70px; }
  .hero h1 { font-size: 2.4rem; }
  .hero > .hero-content > p { font-size: 1rem; }

  .trust-bar { flex-direction: column; align-items: center; padding: 8px 5%; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
  }
  .trust-item:last-child { border-bottom: none; }

  .section { padding: 64px 5%; }
  .section-inner h2 { font-size: 1.8rem; }

  .cards { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 400px; }
  .card.featured { transform: scale(1); }

  .meet-wrapper { flex-direction: column; align-items: center; text-align: center; }
  .meet-text { text-align: left; }

  .physio-photo { width: 200px; height: 240px; }

  .credentials li { justify-content: flex-start; }

  .testimonials { flex-direction: column; align-items: center; }
  .testimonial { width: 100%; max-width: 400px; }

  .contact-wrapper { flex-direction: column; }
  .contact-info { max-width: 100%; width: 100%; }
  .contact-form { max-width: 100%; width: 100%; }
}
/* ===== HERO POLISH ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(10, 31, 60, 0.92) 0%, rgba(10, 92, 138, 0.85) 55%, rgba(78, 205, 196, 0.35) 100%),
    url('hero.png') center top / 100% auto no-repeat;
}

/* ===== ABOUT SECTION POLISH ===== */
#about .section-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

#about .section-inner p {
  font-size: 1.08rem;
  color: var(--grey-700);
  max-width: 680px;
}

/* ===== SECTION DIVIDER LINE ===== */
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ===== CARD HOVER GLOW ===== */
.card.featured {
  box-shadow: 0 8px 32px rgba(78, 205, 196, 0.2);
}

.card.featured:hover {
  box-shadow: 0 16px 48px rgba(78, 205, 196, 0.3);
}

/* ===== MEET SECTION POLISH ===== */
.physio-photo {
  width: 380px;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.physio-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(10, 40, 80, 0.2);
}

/* ===== TESTIMONIAL QUOTE MARK ===== */
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 60px;
  color: var(--grey-100);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* ===== CONTACT INFO HOVER ===== */
.contact-info-item {
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.contact-info-item:hover {
  background: var(--grey-100);
}

.contact-icon {
  background: rgba(10, 92, 138, 0.08);
  border: 1px solid rgba(10, 92, 138, 0.1);
}

/* ===== FOOTER POLISH ===== */
footer {
  background: linear-gradient(180deg, #0a1f3c 0%, #061228 100%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-badge {
  transition: all var(--transition);
}

.footer-badge:hover {
  background: rgba(78, 205, 196, 0.15);
  border-color: rgba(78, 205, 196, 0.3);
  color: var(--teal);
}

/* ===== SMOOTH BUTTON ANIMATIONS ===== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn:hover::after { opacity: 1; }

/* ===== MOBILE ABOUT FIX ===== */
@media (max-width: 768px) {
  #about .section-inner {
    padding: 35px 25px;
  }

  .physio-photo {
    width: 260px;
    height: 300px;
  }
}