/* Font Face Declarations */
@font-face {
  font-family: 'IvyPresto Headline';
  src: url('../typography/Regular IvyPresto.otf.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'IvyPresto Headline';
  src: url('../typography/italic Regular IvyPresto.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'IvyPresto Headline';
  src: url('../typography/Semi Regular IvyPresto.otf.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

/* Reset and Base Styles */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #101010;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */

.about-hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
}

.about-hero-section__content {
  text-align: center;
  margin-bottom: 60px;
  max-width: 100%;
}

.about-hero-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: #101010;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  display: block;
}

.about-hero-section__title--accent {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: #C80180;
  line-height: 1.1;
  margin: 0 0 30px 0;
  text-align: center;
  display: block;
}

.about-hero-section__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #101010;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-section__image-container {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}

.about-hero-section__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-hero-section__image:hover {
  transform: translateY(-5px);
}

/* Mobile Breakpoints - Ensure full image visibility */

/* iPhone 5/5S/SE - 320x568 */
@media screen and (max-width: 320px) {
  .about-hero-section {
      min-height: auto;
      padding: 20px 15px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 28px;
  }
  
  .about-hero-section__subtitle {
      font-size: 12px;
  }
  
  .about-hero-section__content {
      margin-bottom: 30px;
  }
  
  .about-hero-section__image-container {
      width: 95%;
      max-width: 95%;
  }
  
  .about-hero-section__image {
      max-height: none;
      object-fit: contain;
  }
}

/* iPhone 6/7/8 - 375x667 */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .about-hero-section {
      min-height: auto;
      padding: 25px 20px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 32px;
  }
  
  .about-hero-section__subtitle {
      font-size: 13px;
  }
  
  .about-hero-section__content {
      margin-bottom: 35px;
  }
  
  .about-hero-section__image-container {
      width: 95%;
      max-width: 95%;
  }
  
  .about-hero-section__image {
      max-height: none;
      object-fit: contain;
  }
}

/* iPhone 6/7/8 Plus and similar - 414x736 */
@media screen and (min-width: 376px) and (max-width: 414px) {
  .about-hero-section {
      min-height: auto;
      padding: 30px 20px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 36px;
  }
  
  .about-hero-section__subtitle {
      font-size: 14px;
  }
  
  .about-hero-section__content {
      margin-bottom: 40px;
  }
  
  .about-hero-section__image-container {
      width: 95%;
      max-width: 95%;
  }
  
  .about-hero-section__image {
      max-height: none;
      object-fit: contain;
  }
}

/* Small tablets and large phones - 415px to 767px */
@media screen and (min-width: 415px) and (max-width: 767px) {
  .about-hero-section {
      min-height: auto;
      padding: 30px 25px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 40px;
  }
  
  .about-hero-section__subtitle {
      font-size: 15px;
  }
  
  .about-hero-section__content {
      margin-bottom: 45px;
  }
  
  .about-hero-section__image-container {
      width: 92%;
      max-width: 92%;
  }
  
  .about-hero-section__image {
      max-height: none;
      object-fit: contain;
  }
}

/* Tablet Portrait - 768px+ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-hero-section {
      min-height: auto;
      padding: 60px 40px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 48px;
  }
  
  .about-hero-section__subtitle {
      font-size: 16px;
      max-width: 700px;
  }
  
  .about-hero-section__content {
      margin-bottom: 70px;
  }
}

/* Laptop and above - 1024px+ (One line title) */
@media screen and (min-width: 1024px) {
  .about-hero-section__title,
  .about-hero-section__title--accent {
      display: inline;
      margin: 0;
  }
  
  .about-hero-section__title--accent {
      margin-left: 0.2em;
      margin-bottom: 30px;
  }
  
  .about-hero-section__title-wrapper {
      margin-bottom: 30px;
  }
}

/* Laptop - 1024px+ */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .about-hero-section {
      padding: 80px 60px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 56px;
  }
  
  .about-hero-section__subtitle {
      font-size: 17px;
      max-width: 750px;
  }
  
  .about-hero-section__content {
      margin-bottom: 80px;
  }
}

/* Desktop - 1440px+ */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .about-hero-section {
      padding: 100px 80px;
      max-width: 1400px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 64px;
  }
  
  .about-hero-section__subtitle {
      font-size: 18px;
      max-width: 800px;
  }
  
  .about-hero-section__content {
      margin-bottom: 90px;
  }
}

/* Large Desktop - 1920px+ */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .about-hero-section {
      padding: 120px 100px;
      max-width: 1600px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 68px;
  }
  
  .about-hero-section__subtitle {
      font-size: 19px;
      max-width: 850px;
  }
  
  .about-hero-section__content {
      margin-bottom: 100px;
  }
}

/* 4K and Ultra-wide - 2560px+ */
@media screen and (min-width: 2560px) {
  .about-hero-section {
      padding: 140px 120px;
      max-width: 1800px;
  }
  
  .about-hero-section__title,
  .about-hero-section__title--accent {
      font-size: 72px;
  }
  
  .about-hero-section__subtitle {
      font-size: 20px;
      max-width: 900px;
  }
  
  .about-hero-section__content {
      margin-bottom: 110px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .about-hero-section__image {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
  }
}

/* Touch-friendly spacing for mobile */
@media (hover: none) and (pointer: coarse) {
  .about-hero-section {
      padding: 25px 20px;
  }
  
  .about-hero-section__content {
      margin-bottom: 35px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .about-hero-section__image {
      transition: none;
  }
  
  .about-hero-section__image:hover {
      transform: none;
  }
}

/* Print styles */
@media print {
  .about-hero-section {
      min-height: auto;
      padding: 20px;
  }
  
  .about-hero-section__image {
      box-shadow: none;
  }
  
  .about-hero-section__content {
      margin-bottom: 30px;
  }
}

/* Field Medicine Section */
.field-medicine-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.field-medicine-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.field-medicine-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: #101010;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.3;
}

.field-medicine-section__title--accent {
  font-style: italic;
  color: #C80180;
}

.field-medicine-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.field-medicine-section__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-medicine-section__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #101010;
  margin: 0;
}

/* Mobile Breakpoints */

/* iPhone 5/5S/SE - 320x568 */
@media screen and (max-width: 320px) {
  .field-medicine-section {
      padding: 40px 15px;
  }
  
  .field-medicine-section__title {
      font-size: 24px;
      margin-bottom: 30px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr;
      gap: 24px;
  }
  
  .field-medicine-section__column {
      gap: 16px;
  }
  
  .field-medicine-section__text {
      font-size: 13px;
      line-height: 1.7;
  }
}

/* iPhone 6/7/8 - 375x667 */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .field-medicine-section {
      padding: 50px 20px;
  }
  
  .field-medicine-section__title {
      font-size: 28px;
      margin-bottom: 35px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr;
      gap: 28px;
  }
  
  .field-medicine-section__column {
      gap: 18px;
  }
  
  .field-medicine-section__text {
      font-size: 13px;
      line-height: 1.75;
  }
}

/* iPhone 6/7/8 Plus and similar - 414x736 */
@media screen and (min-width: 376px) and (max-width: 414px) {
  .field-medicine-section {
      padding: 55px 20px;
  }
  
  .field-medicine-section__title {
      font-size: 30px;
      margin-bottom: 40px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .field-medicine-section__column {
      gap: 20px;
  }
  
  .field-medicine-section__text {
      font-size: 14px;
      line-height: 1.8;
  }
}

/* Small tablets and large phones - 415px to 767px */
@media screen and (min-width: 415px) and (max-width: 767px) {
  .field-medicine-section {
      padding: 60px 25px;
  }
  
  .field-medicine-section__title {
      font-size: 32px;
      margin-bottom: 45px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  .field-medicine-section__column {
      gap: 20px;
  }
  
  .field-medicine-section__text {
      font-size: 14px;
      line-height: 1.8;
  }
}

/* Tablet Portrait - 768px+ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .field-medicine-section {
      padding: 70px 40px;
  }
  
  .field-medicine-section__title {
      font-size: 40px;
      margin-bottom: 50px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .field-medicine-section__column {
      gap: 22px;
  }
  
  .field-medicine-section__text {
      font-size: 15px;
      line-height: 1.8;
  }
}

/* Laptop - 1024px+ */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .field-medicine-section {
      padding: 80px 60px;
  }
  
  .field-medicine-section__title {
      font-size: 44px;
      margin-bottom: 60px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }
  
  .field-medicine-section__column {
      gap: 24px;
  }
  
  .field-medicine-section__text {
      font-size: 15px;
      line-height: 1.8;
  }
}

/* Desktop - 1440px+ */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .field-medicine-section {
      padding: 90px 80px;
  }
  
  .field-medicine-section__title {
      font-size: 48px;
      margin-bottom: 70px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
  }
  
  .field-medicine-section__column {
      gap: 24px;
  }
  
  .field-medicine-section__text {
      font-size: 16px;
      line-height: 1.8;
  }
}

/* Large Desktop - 1920px+ */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .field-medicine-section {
      padding: 100px 100px;
  }
  
  .field-medicine-section__title {
      font-size: 52px;
      margin-bottom: 80px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr 1fr;
      gap: 70px;
  }
  
  .field-medicine-section__column {
      gap: 26px;
  }
  
  .field-medicine-section__text {
      font-size: 17px;
      line-height: 1.8;
  }
}

/* 4K and Ultra-wide - 2560px+ */
@media screen and (min-width: 2560px) {
  .field-medicine-section {
      padding: 120px 120px;
  }
  
  .field-medicine-section__title {
      font-size: 56px;
      margin-bottom: 90px;
  }
  
  .field-medicine-section__content {
      grid-template-columns: 1fr 1fr;
      gap: 80px;
  }
  
  .field-medicine-section__column {
      gap: 28px;
  }
  
  .field-medicine-section__text {
      font-size: 18px;
      line-height: 1.8;
  }
}

/* Print styles for field medicine section */
@media print {
  .field-medicine-section {
      padding: 40px 20px;
      background-color: white;
  }
  
  .field-medicine-section__content {
      gap: 30px;
  }
}

/* Timeline Section */
.timeline-section {
  background-color: #ffffff;
  height: 100vh;
  min-height: 600px;
  padding: 40px 20px 40px 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timeline-section__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-section__title {
  font-family: 'IvyPresto Headline', serif;
  font-weight: 400;
  font-size: 56px;
  color: #101010;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.timeline-section__title--accent {
  font-family: 'IvyPresto Headline', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  color: #C80180;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.timeline-section__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* Timeline Navigation and Line */
.timeline-section__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.timeline-section__details {
  position: relative;
}

.timeline-section__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.timeline-section__nav-btn {
  background: none;
  border: none;
  color: #101010;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.timeline-section__nav-btn:hover {
  color: #C80180;
}

.timeline-section__nav-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.timeline-section__counter {
  font-size: 14px;
  color: #101010;
  min-width: 60px;
  text-align: center;
}

.timeline-section__line {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
  min-height: 100%;
}

.timeline-section__years {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0;
  padding-right: 50px;
  overflow: hidden;
}

.timeline-section__year {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: right;
  transition: all 0.3s ease;
  width: 100%;
}

.timeline-section__year-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #999;
  transition: all 0.3s ease;
  text-align: right;
}

.timeline-section__year--active .timeline-section__year-label {
  font-family: 'IvyPresto Headline', serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #C80180;
}

.timeline-section__year-dot {
  position: absolute;
  right: -30px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(50%, 0);
}

.timeline-section__year--active .timeline-section__year-dot {
  width: 16px;
  height: 16px;
  background-color: #C80180;
}

/* Timeline Details */
.timeline-section__details {
  position: relative;
}

.timeline-section__item {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.timeline-section__item--active {
  display: block;
}

.timeline-section__item-title {
  font-family: 'IvyPresto Headline', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  color: #101010;
  margin: 0 0 20px 0;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.timeline-section__item-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #101010;
  margin: 0 0 30px 0;
}

.timeline-section__item-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.timeline-section__item-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.timeline-section__item-image--small {
  max-width: 45%;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Breakpoints */

/* iPhone 5/5S/SE - 320px */
@media screen and (max-width: 320px) {
  .timeline-section {
      padding: 80px 15px 40px;
      min-height: auto;
      overflow-x: hidden;
      height: auto;
  }
  
  .timeline-section__container {
      max-width: 100%;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__title {
      font-size: 24px;
      margin-bottom: 30px;
      order: 1;
  }
  
  .timeline-section__content {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: unset !important;
      gap: 30px;
      order: 2;
  }
  
  .timeline-section__timeline {
      order: 1;
      min-height: auto;
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .timeline-section__details {
      order: 3;
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__navigation {
      margin-bottom: 30px;
      justify-content: center;
      order: 1;
  }
  
  .timeline-section__item {
      order: 2;
  }
  
  .timeline-section__line {
      position: absolute;
      top: 8px;
      left: 0;
      right: 0;
      width: 100%;
      height: 2px;
      background-color: #e0e0e0;
  }
  
  .timeline-section__years {
      position: relative;
      display: flex !important;
      flex-direction: row !important;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 40px;
      padding: 0 0 20px 0;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
  }
  
  .timeline-section__years::-webkit-scrollbar {
      display: none;
  }
  
  .timeline-section__year {
      flex-shrink: 0;
      display: flex !important;
      flex-direction: column !important;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 8px;
  }
  
  .timeline-section__year-label {
      font-size: 11px;
      text-align: center;
      order: 2;
      white-space: nowrap;
  }
  
  .timeline-section__year--active .timeline-section__year-label {
      font-size: 24px;
      font-family: 'IvyPresto Headline', serif;
      font-weight: 600;
      color: #C80180;
  }
  
  .timeline-section__year-dot {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      margin: 0;
      order: 1;
  }
  
  .timeline-section__item-title {
      font-size: 20px;
      margin-bottom: 16px;
  }
  
  .timeline-section__item-description {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
  }
  
  .timeline-section__item-image {
      margin-top: 20px;
  }
  
  .timeline-section__item-image--small {
      max-width: 100%;
      margin: 0;
  }
}

/* iPhone 6/7/8 - 375x667 */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .timeline-section {
      padding: 80px 20px 40px;
      min-height: auto;
      height: auto;
  }
  
  .timeline-section__container {
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__title {
      font-size: 28px;
      margin-bottom: 35px;
      order: 1;
  }
  
  .timeline-section__content {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: unset !important;
      gap: 35px;
      order: 2;
  }
  
  .timeline-section__timeline {
      order: 1;
      min-height: auto;
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .timeline-section__details {
      order: 3;
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__navigation {
      justify-content: center;
      order: 1;
      margin-bottom: 30px;
  }
  
  .timeline-section__item {
      order: 2;
  }
  
  .timeline-section__line {
      position: absolute;
      top: 8px;
      left: 0;
      right: 0;
      width: 100%;
      height: 2px;
      background-color: #e0e0e0;
  }
  
  .timeline-section__years {
      position: relative;
      display: flex !important;
      flex-direction: row !important;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 45px;
      padding: 0 0 20px 0;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
  }
  
  .timeline-section__years::-webkit-scrollbar {
      display: none;
  }
  
  .timeline-section__year {
      flex-shrink: 0;
      display: flex !important;
      flex-direction: column !important;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 8px;
  }
  
  .timeline-section__year-label {
      font-size: 12px;
      text-align: center;
      order: 2;
      white-space: nowrap;
  }
  
  .timeline-section__year--active .timeline-section__year-label {
      font-size: 26px;
      font-family: 'IvyPresto Headline', serif;
      font-weight: 600;
      color: #C80180;
  }
  
  .timeline-section__year-dot {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      margin: 0;
      order: 1;
  }
  
  .timeline-section__item-title {
      font-size: 22px;
      margin-bottom: 16px;
  }
  
  .timeline-section__item-description {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
  }
  
  .timeline-section__item-image {
      margin-top: 20px;
  }
  
  .timeline-section__item-image--small {
      max-width: 100%;
      margin: 0;
  }
}

/* Android phones (360x640) and iPhone X/XS/11 Pro (375x812) */
@media screen and (min-width: 376px) and (max-width: 413px) {
  .timeline-section {
      padding: 80px 20px 40px;
      min-height: auto;
      height: auto;
  }
  
  .timeline-section__container {
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__title {
      font-size: 30px;
      margin-bottom: 40px;
      order: 1;
  }
  
  .timeline-section__content {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: unset !important;
      gap: 40px;
      order: 2;
  }
  
  .timeline-section__timeline {
      order: 1;
      min-height: auto;
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .timeline-section__details {
      order: 3;
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__navigation {
      justify-content: center;
      order: 1;
      margin-bottom: 30px;
  }
  
  .timeline-section__item {
      order: 2;
  }
  
  .timeline-section__line {
      position: absolute;
      top: 8px;
      left: 0;
      right: 0;
      width: 100%;
      height: 2px;
      background-color: #e0e0e0;
  }
  
  .timeline-section__years {
      position: relative;
      display: flex !important;
      flex-direction: row !important;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 50px;
      padding: 0 0 20px 0;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
  }
  
  .timeline-section__years::-webkit-scrollbar {
      display: none;
  }
  
  .timeline-section__year {
      flex-shrink: 0;
      display: flex !important;
      flex-direction: column !important;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 8px;
  }
  
  .timeline-section__year-label {
      font-size: 12px;
      text-align: center;
      order: 2;
      white-space: nowrap;
  }
  
  .timeline-section__year--active .timeline-section__year-label {
      font-size: 28px;
      font-family: 'IvyPresto Headline', serif;
      font-weight: 600;
      color: #C80180;
  }
  
  .timeline-section__year-dot {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      margin: 0;
      order: 1;
  }
  
  .timeline-section__item-title {
      font-size: 24px;
      margin-bottom: 16px;
  }
  
  .timeline-section__item-description {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 20px;
  }
  
  .timeline-section__item-image {
      margin-top: 20px;
  }
  
  .timeline-section__item-image--small {
      max-width: 100%;
      margin: 0;
  }
}

/* iPhone 6/7/8 Plus (414x736) and iPhone XR/XS Max/11/11 Pro Max (414x896) */
@media screen and (min-width: 414px) and (max-width: 767px) {
  .timeline-section {
      padding: 80px 25px 40px;
      min-height: auto;
      height: auto;
  }
  
  .timeline-section__container {
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__title {
      font-size: 32px;
      margin-bottom: 45px;
      order: 1;
  }
  
  .timeline-section__content {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: unset !important;
      gap: 40px;
      order: 2;
  }
  
  .timeline-section__timeline {
      order: 1;
      min-height: auto;
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .timeline-section__details {
      order: 3;
      display: flex;
      flex-direction: column;
  }
  
  .timeline-section__navigation {
      justify-content: center;
      order: 1;
      margin-bottom: 30px;
  }
  
  .timeline-section__item {
      order: 2;
  }
  
  .timeline-section__line {
      position: absolute;
      top: 8px;
      left: 0;
      right: 0;
      width: 100%;
      height: 2px;
      background-color: #e0e0e0;
  }
  
  .timeline-section__years {
      position: relative;
      display: flex !important;
      flex-direction: row !important;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 55px;
      padding: 0 0 20px 0;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
  }
  
  .timeline-section__years::-webkit-scrollbar {
      display: none;
  }
  
  .timeline-section__year {
      flex-shrink: 0;
      display: flex !important;
      flex-direction: column !important;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 8px;
  }
  
  .timeline-section__year-label {
      font-size: 13px;
      text-align: center;
      order: 2;
      white-space: nowrap;
  }
  
  .timeline-section__year--active .timeline-section__year-label {
      font-size: 30px;
      font-family: 'IvyPresto Headline', serif;
      font-weight: 600;
      color: #C80180;
  }
  
  .timeline-section__year-dot {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      margin: 0;
      order: 1;
  }
  
  .timeline-section__item-title {
      font-size: 26px;
      margin-bottom: 16px;
  }
  
  .timeline-section__item-description {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 20px;
  }
  
  .timeline-section__item-image {
      margin-top: 20px;
  }
  
  .timeline-section__item-image--small {
      max-width: 100%;
      margin: 0;
  }
}

/* iPad (768x1024) and iPad Pro 10.5" (834x1112) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .timeline-section {
      padding: 70px 40px 70px 20px;
  }
  
  .timeline-section__title {
      font-size: 40px;
      margin-bottom: 50px;
  }
  
  .timeline-section__content {
      grid-template-columns: 250px 1fr;
      gap: 50px;
  }
  
  .timeline-section__timeline {
      min-height: 500px;
  }
  
  .timeline-section__item-title {
      font-size: 26px;
  }
  
  .timeline-section__item-description {
      font-size: 15px;
  }
}

/* iPad Pro 12.9" (1024x1366) and Laptop (1024x1161) */
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .timeline-section {
      padding: 80px 60px 80px 20px;
  }
  
  .timeline-section__title {
      font-size: 44px;
      margin-bottom: 60px;
  }
  
  .timeline-section__content {
      grid-template-columns: 280px 1fr;
      gap: 60px;
  }
  
  .timeline-section__item-title {
      font-size: 28px;
  }
  
  .timeline-section__item-description {
      font-size: 15px;
  }
}

/* Desktop (1440x900) */
@media screen and (min-width: 1366px) and (max-width: 1919px) {
  .timeline-section {
      padding: 90px 80px 90px 20px;
  }
  
  .timeline-section__title {
      font-size: 48px;
      margin-bottom: 70px;
  }
  
  .timeline-section__content {
      grid-template-columns: 300px 1fr;
      gap: 70px;
  }
  
  .timeline-section__item-title {
      font-size: 30px;
  }
  
  .timeline-section__item-description {
      font-size: 16px;
  }
}

/* Full HD (1920x1080) */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .timeline-section {
      padding: 100px 100px 100px 20px;
  }
  
  .timeline-section__title {
      font-size: 52px;
      margin-bottom: 80px;
  }
  
  .timeline-section__content {
      grid-template-columns: 320px 1fr;
      gap: 80px;
  }
  
  .timeline-section__item-title {
      font-size: 32px;
  }
  
  .timeline-section__item-description {
      font-size: 17px;
  }
}

/* QHD (2560x1440) */
@media screen and (min-width: 2560px) and (max-width: 3839px) {
  .timeline-section {
      padding: 120px 120px 120px 20px;
  }
  
  .timeline-section__title {
      font-size: 56px;
      margin-bottom: 90px;
  }
  
  .timeline-section__content {
      grid-template-columns: 350px 1fr;
      gap: 90px;
  }
  
  .timeline-section__item-title {
      font-size: 34px;
  }
  
  .timeline-section__item-description {
      font-size: 18px;
  }
}

/* 4K UHD (3840x2160) */
@media screen and (min-width: 3840px) {
  .timeline-section {
      padding: 140px 140px 140px 20px;
  }
  
  .timeline-section__title {
      font-size: 60px;
      margin-bottom: 100px;
  }
  
  .timeline-section__content {
      grid-template-columns: 400px 1fr;
      gap: 100px;
  }
  
  .timeline-section__item-title {
      font-size: 36px;
  }
  
  .timeline-section__item-description {
      font-size: 20px;
  }
}

/* Print styles for timeline section */
@media print {
  .timeline-section {
      padding: 40px 20px;
  }
  
  .timeline-section__navigation {
      display: none;
  }
  
  .timeline-section__content {
      grid-template-columns: 1fr;
  }
}

/* Track Record Section */
.track-record-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.track-record-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.track-record-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: #101010;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.3;
}

.track-record-section__title--accent {
  font-style: italic;
  color: #C80180;
}

.track-record-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.track-record-section__item {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-record-section__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.track-record-section__stat {
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.track-record-section__stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  color: #C80180;
  line-height: 1;
}

.track-record-section__stat-plus {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 24px;
  color: #101010;
  line-height: 1;
}

.track-record-section__stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #101010;
  line-height: 1.2;
}

.track-record-section__stat-label-emphasis {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #C80180;
  line-height: 1.2;
}

.track-record-section__description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Mobile Breakpoints */

/* iPhone 5/5S/SE - 320x568 */
@media screen and (max-width: 320px) {
  .track-record-section {
      padding: 40px 15px;
  }
  
  .track-record-section__title {
      font-size: 24px;
      margin-bottom: 30px;
  }
  
  .track-record-section__grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .track-record-section__item {
      padding: 30px 20px;
  }
  
  .track-record-section__stat-number {
      font-size: 36px;
  }
  
  .track-record-section__stat-plus {
      font-size: 18px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 14px;
  }
  
  .track-record-section__description {
      font-size: 13px;
  }
}

/* iPhone 6/7/8 - 375x667 */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .track-record-section {
      padding: 50px 20px;
  }
  
  .track-record-section__title {
      font-size: 28px;
      margin-bottom: 35px;
  }
  
  .track-record-section__grid {
      grid-template-columns: 1fr;
      gap: 24px;
  }
  
  .track-record-section__item {
      padding: 32px 24px;
  }
  
  .track-record-section__stat-number {
      font-size: 40px;
  }
  
  .track-record-section__stat-plus {
      font-size: 20px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 14px;
  }
  
  .track-record-section__description {
      font-size: 13px;
  }
}

/* iPhone 6/7/8 Plus and similar - 414x736 */
@media screen and (min-width: 376px) and (max-width: 414px) {
  .track-record-section {
      padding: 55px 20px;
  }
  
  .track-record-section__title {
      font-size: 30px;
      margin-bottom: 40px;
  }
  
  .track-record-section__grid {
      grid-template-columns: 1fr;
      gap: 28px;
  }
  
  .track-record-section__item {
      padding: 35px 25px;
  }
  
  .track-record-section__stat-number {
      font-size: 42px;
  }
  
  .track-record-section__stat-plus {
      font-size: 22px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 15px;
  }
  
  .track-record-section__description {
      font-size: 14px;
  }
}

/* Small tablets and large phones - 415px to 767px */
@media screen and (min-width: 415px) and (max-width: 767px) {
  .track-record-section {
      padding: 60px 25px;
  }
  
  .track-record-section__title {
      font-size: 32px;
      margin-bottom: 45px;
  }
  
  .track-record-section__grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .track-record-section__item {
      padding: 35px 28px;
  }
  
  .track-record-section__stat-number {
      font-size: 44px;
  }
  
  .track-record-section__stat-plus {
      font-size: 22px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 15px;
  }
  
  .track-record-section__description {
      font-size: 14px;
  }
}

/* Tablet Portrait - 768px+ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .track-record-section {
      padding: 70px 40px;
  }
  
  .track-record-section__title {
      font-size: 40px;
      margin-bottom: 50px;
  }
  
  .track-record-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
  }
  
  .track-record-section__item {
      padding: 38px 30px;
  }
  
  .track-record-section__stat-number {
      font-size: 46px;
  }
  
  .track-record-section__stat-plus {
      font-size: 23px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 15px;
  }
  
  .track-record-section__description {
      font-size: 14px;
  }
}

/* Laptop - 1024px+ */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .track-record-section {
      padding: 80px 60px;
  }
  
  .track-record-section__title {
      font-size: 44px;
      margin-bottom: 60px;
  }
  
  .track-record-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
  }
  
  .track-record-section__item {
      padding: 40px 30px;
  }
  
  .track-record-section__stat-number {
      font-size: 48px;
  }
  
  .track-record-section__stat-plus {
      font-size: 24px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 16px;
  }
  
  .track-record-section__description {
      font-size: 14px;
  }
}

/* Desktop - 1440px+ */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .track-record-section {
      padding: 90px 80px;
  }
  
  .track-record-section__title {
      font-size: 48px;
      margin-bottom: 70px;
  }
  
  .track-record-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 45px;
  }
  
  .track-record-section__item {
      padding: 45px 35px;
  }
  
  .track-record-section__stat-number {
      font-size: 52px;
  }
  
  .track-record-section__stat-plus {
      font-size: 26px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 17px;
  }
  
  .track-record-section__description {
      font-size: 15px;
  }
}

/* Large Desktop - 1920px+ */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .track-record-section {
      padding: 100px 100px;
  }
  
  .track-record-section__title {
      font-size: 52px;
      margin-bottom: 80px;
  }
  
  .track-record-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
  }
  
  .track-record-section__item {
      padding: 50px 40px;
  }
  
  .track-record-section__stat-number {
      font-size: 56px;
  }
  
  .track-record-section__stat-plus {
      font-size: 28px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 18px;
  }
  
  .track-record-section__description {
      font-size: 16px;
  }
}

/* 4K and Ultra-wide - 2560px+ */
@media screen and (min-width: 2560px) {
  .track-record-section {
      padding: 120px 120px;
  }
  
  .track-record-section__title {
      font-size: 56px;
      margin-bottom: 90px;
  }
  
  .track-record-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
  }
  
  .track-record-section__item {
      padding: 55px 45px;
  }
  
  .track-record-section__stat-number {
      font-size: 60px;
  }
  
  .track-record-section__stat-plus {
      font-size: 30px;
  }
  
  .track-record-section__stat-label,
  .track-record-section__stat-label-emphasis {
      font-size: 19px;
  }
  
  .track-record-section__description {
      font-size: 17px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .track-record-section__item {
      transition: none;
  }
  
  .track-record-section__item:hover {
      transform: none;
  }
}

/* Print styles for track record section */
@media print {
  .track-record-section {
      padding: 40px 20px;
      background-color: white;
  }
  
  .track-record-section__grid {
      gap: 30px;
  }
  
  .track-record-section__item {
      box-shadow: none;
      border: 1px solid #e0e0e0;
  }
  
  .track-record-section__item:hover {
      transform: none;
      box-shadow: none;
  }
}

/* Beyond the White Coat Section */
.beyond-white-coat-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.beyond-white-coat-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.beyond-white-coat-section__content {
  display: flex;
  flex-direction: column;
}

.beyond-white-coat-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: #101010;
  margin: 0 0 40px 0;
  line-height: 1.3;
}

.beyond-white-coat-section__title--accent {
  font-style: italic;
  color: #C80180;
}

.beyond-white-coat-section__text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.beyond-white-coat-section__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #101010;
  margin: 0;
}

.beyond-white-coat-section__text--emphasis {
  font-style: italic;
  color: #C80180;
  font-weight: 500;
}

.beyond-white-coat-section__image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.beyond-white-coat-section__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.beyond-white-coat-section__image:hover {
  transform: scale(1.02);
}

/* Mobile Breakpoints */

/* iPhone 5/5S/SE - 320x568 */
@media screen and (max-width: 320px) {
  .beyond-white-coat-section {
      padding: 40px 15px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 24px;
      margin-bottom: 25px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 16px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 13px;
      line-height: 1.7;
  }
  
  .beyond-white-coat-section__image-container {
      order: -1;
  }
}

/* iPhone 6/7/8 - 375x667 */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .beyond-white-coat-section {
      padding: 50px 20px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr;
      gap: 35px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 28px;
      margin-bottom: 30px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 18px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 13px;
      line-height: 1.75;
  }
  
  .beyond-white-coat-section__image-container {
      order: -1;
  }
}

/* iPhone 6/7/8 Plus and similar - 414x736 */
@media screen and (min-width: 376px) and (max-width: 414px) {
  .beyond-white-coat-section {
      padding: 55px 20px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 30px;
      margin-bottom: 32px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 18px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 14px;
      line-height: 1.8;
  }
  
  .beyond-white-coat-section__image-container {
      order: -1;
  }
}

/* Small tablets and large phones - 415px to 767px */
@media screen and (min-width: 415px) and (max-width: 767px) {
  .beyond-white-coat-section {
      padding: 60px 25px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr;
      gap: 45px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 32px;
      margin-bottom: 35px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 20px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 14px;
      line-height: 1.8;
  }
  
  .beyond-white-coat-section__image-container {
      order: -1;
  }
}

/* Tablet Portrait - 768px+ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .beyond-white-coat-section {
      padding: 70px 40px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr;
      gap: 50px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 40px;
      margin-bottom: 40px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 22px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 15px;
      line-height: 1.8;
  }
  
  .beyond-white-coat-section__image-container {
      order: -1;
      max-width: 600px;
      margin: 0 auto;
  }
}

/* Laptop - 1024px+ */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .beyond-white-coat-section {
      padding: 80px 60px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 44px;
      margin-bottom: 40px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 20px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 15px;
      line-height: 1.8;
  }
}

/* Desktop - 1440px+ */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .beyond-white-coat-section {
      padding: 90px 80px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 48px;
      margin-bottom: 45px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 22px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 16px;
      line-height: 1.8;
  }
}

/* Large Desktop - 1920px+ */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .beyond-white-coat-section {
      padding: 100px 100px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr 1fr;
      gap: 70px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 52px;
      margin-bottom: 50px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 24px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 17px;
      line-height: 1.8;
  }
}

/* 4K and Ultra-wide - 2560px+ */
@media screen and (min-width: 2560px) {
  .beyond-white-coat-section {
      padding: 120px 120px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr 1fr;
      gap: 80px;
  }
  
  .beyond-white-coat-section__title {
      font-size: 56px;
      margin-bottom: 55px;
  }
  
  .beyond-white-coat-section__text-content {
      gap: 26px;
  }
  
  .beyond-white-coat-section__text {
      font-size: 18px;
      line-height: 1.8;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .beyond-white-coat-section__image {
      transition: none;
  }
  
  .beyond-white-coat-section__image:hover {
      transform: none;
  }
}

/* Print styles for beyond white coat section */
@media print {
  .beyond-white-coat-section {
      padding: 40px 20px;
  }
  
  .beyond-white-coat-section__container {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .beyond-white-coat-section__image {
      max-width: 500px;
  }
}

/* Future CTA Section */
.future-cta-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Poppins', sans-serif;
}

.future-cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.85) 0%, rgba(200, 1, 128, 0.75) 100%);
  z-index: 1;
}

.future-cta-section__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: white;
}

.future-cta-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 42px;
  color: white;
  margin: 0 0 30px 0;
  line-height: 1.3;
}

.future-cta-section__title--accent {
  font-style: italic;
  color: white;
}

.future-cta-section__description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: white;
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.future-cta-section__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: #101010;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.future-cta-section__button:hover {
  background: #C80180;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 1, 128, 0.4);
}

.future-cta-section__button-icon {
  transition: transform 0.3s ease;
}

.future-cta-section__button:hover .future-cta-section__button-icon {
  transform: translateX(4px);
}

/* Mobile Breakpoints */

/* iPhone 5/5S/SE - 320x568 */
@media screen and (max-width: 320px) {
  .future-cta-section {
      min-height: 350px;
      padding: 60px 15px;
  }
  
  .future-cta-section__title {
      font-size: 28px;
      margin-bottom: 20px;
  }
  
  .future-cta-section__description {
      font-size: 13px;
      margin-bottom: 30px;
  }
  
  .future-cta-section__button {
      padding: 14px 24px;
      font-size: 12px;
      gap: 8px;
  }
  
  .future-cta-section__button-icon {
      width: 16px;
      height: 16px;
  }
}

/* iPhone 6/7/8 - 375x667 */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .future-cta-section {
      min-height: 360px;
      padding: 70px 20px;
  }
  
  .future-cta-section__title {
      font-size: 32px;
      margin-bottom: 24px;
  }
  
  .future-cta-section__description {
      font-size: 14px;
      margin-bottom: 32px;
  }
  
  .future-cta-section__button {
      padding: 14px 26px;
      font-size: 13px;
      gap: 10px;
  }
  
  .future-cta-section__button-icon {
      width: 18px;
      height: 18px;
  }
}

/* iPhone 6/7/8 Plus and similar - 414x736 */
@media screen and (min-width: 376px) and (max-width: 414px) {
  .future-cta-section {
      min-height: 370px;
      padding: 75px 20px;
  }
  
  .future-cta-section__title {
      font-size: 34px;
      margin-bottom: 26px;
  }
  
  .future-cta-section__description {
      font-size: 14px;
      margin-bottom: 34px;
  }
  
  .future-cta-section__button {
      padding: 15px 28px;
      font-size: 13px;
  }
}

/* Small tablets and large phones - 415px to 767px */
@media screen and (min-width: 415px) and (max-width: 767px) {
  .future-cta-section {
      min-height: 380px;
      padding: 80px 25px;
  }
  
  .future-cta-section__title {
      font-size: 36px;
      margin-bottom: 28px;
  }
  
  .future-cta-section__description {
      font-size: 15px;
      margin-bottom: 36px;
  }
  
  .future-cta-section__button {
      padding: 15px 30px;
      font-size: 14px;
  }
}

/* Tablet Portrait - 768px+ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .future-cta-section {
      min-height: 400px;
      padding: 90px 40px;
  }
  
  .future-cta-section__title {
      font-size: 40px;
      margin-bottom: 30px;
  }
  
  .future-cta-section__description {
      font-size: 16px;
      margin-bottom: 38px;
  }
  
  .future-cta-section__button {
      padding: 16px 32px;
      font-size: 14px;
  }
}

/* Laptop - 1024px+ */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .future-cta-section {
      min-height: 420px;
      padding: 100px 60px;
  }
  
  .future-cta-section__title {
      font-size: 44px;
      margin-bottom: 32px;
  }
  
  .future-cta-section__description {
      font-size: 16px;
      margin-bottom: 40px;
  }
}

/* Desktop - 1440px+ */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .future-cta-section {
      min-height: 450px;
      padding: 110px 80px;
  }
  
  .future-cta-section__title {
      font-size: 48px;
      margin-bottom: 34px;
  }
  
  .future-cta-section__description {
      font-size: 17px;
      margin-bottom: 42px;
  }
}

/* Large Desktop - 1920px+ */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .future-cta-section {
      min-height: 480px;
      padding: 120px 100px;
  }
  
  .future-cta-section__title {
      font-size: 52px;
      margin-bottom: 36px;
  }
  
  .future-cta-section__description {
      font-size: 18px;
      margin-bottom: 44px;
  }
}

/* 4K and Ultra-wide - 2560px+ */
@media screen and (min-width: 2560px) {
  .future-cta-section {
      min-height: 500px;
      padding: 130px 120px;
  }
  
  .future-cta-section__title {
      font-size: 56px;
      margin-bottom: 38px;
  }
  
  .future-cta-section__description {
      font-size: 19px;
      margin-bottom: 46px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .future-cta-section__button {
      transition: none;
  }
  
  .future-cta-section__button:hover {
      transform: none;
  }
  
  .future-cta-section__button-icon {
      transition: none;
  }
  
  .future-cta-section__button:hover .future-cta-section__button-icon {
      transform: none;
  }
}

/* Print styles for future CTA section */
@media print {
  .future-cta-section {
      min-height: auto;
      padding: 60px 20px;
      background-image: none;
      background-color: #101010;
  }
  
  .future-cta-section__overlay {
      display: none;
  }
  
  .future-cta-section__button {
      border: 2px solid white;
  }
}
