/* Base styling */
.page_container__aoG4z {
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Hero section */
.page_hero__SKW6o {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 0 0 20px 20px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.2);
}

.page_heroContent__2lPR8 {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.page_heroImageContainer__BC5je {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  animation: page_float__P1Jpw 6s ease-in-out infinite;
}

.page_heroImage__Q6NCQ {
  border-radius: 10px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.page_title__3jonF {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page_subtitle__iAJUg {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Navigation */
.page_navigation__sIIfG {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page_navLink__2S7dD {
  text-decoration: none;
  color: #0077b6;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.page_navLink__2S7dD:hover {
  background-color: #0077b6;
  color: white;
  transform: translateY(-2px);
}

/* Main content */
.page_main__GlU4n {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Feature section */
.page_featureSection__6dJGm {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.page_featureContent__Wz0DL {
  flex: 1;
  min-width: 300px;
}

.page_featureImage__zonAI {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page_sectionTitle__hzsAh {
  font-size: 2.2rem;
  color: #0077b6;
  margin-bottom: 1.5rem;
  position: relative;
}

.page_sectionTitle__hzsAh::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #00b4d8;
  border-radius: 2px;
}

.page_featureText__0lch2 {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* Info section with cards */
.page_infoSection__X8cLJ {
  margin-bottom: 4rem;
}

.page_infoCards__kOpVj {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.page_card__QV0Om {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page_card__QV0Om h3 {
  color: #0077b6;
  margin-bottom: 1rem;
}

/* Upcoming section */
.page_upcomingSection__zHKd7 {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap-reverse;
  gap: 2rem;
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
}

.page_upcomingContent__5WMRr {
  flex: 1.5;
  min-width: 300px;
}

.page_upcomingImage__P6vC1 {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page_imageBorder__9un5z {
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page_imageBorder__9un5z:hover {
  transform: scale(1.03);
}

/* Source section */
.page_sourceSection__BlDI5 {
  background-color: #f0f7f9;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  border-left: 5px solid #0077b6;
}

.page_smallTitle__frNaM {
  color: #0077b6;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons and links */
.page_ctaButton__tHxa2, .page_linkButton__hI4am {
  display: inline-block;
  background-color: #ff9500;
  color: white;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.page_ctaButton__tHxa2:hover, .page_linkButton__hI4am:hover {
  background-color: #ff7b00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.page_textLink__B4dk0 {
  color: #0077b6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
}

.page_textLink__B4dk0:hover {
  color: #00b4d8;
  border-bottom: 2px solid #00b4d8;
}

/* Footer */
.page_footer__sHKi3 {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem; /* Reduced from 2rem to 1rem */
  margin-top: 4rem;
  border-radius: 20px 20px 0 0;
}

/* Animations */
@keyframes page_float__P1Jpw {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page_hero__SKW6o {
    padding: 3rem 1.5rem;
    text-align: center;
    flex-direction: column;
  }
  
  .page_heroContent__2lPR8 {
    padding-right: 0;
    margin-bottom: 2rem;
    min-width: auto;
    width: 100%;
  }
  
  .page_heroImageContainer__BC5je {
    min-width: auto;
    width: 100%;
  }
  
  .page_title__3jonF {
    font-size: 2.5rem;
  }
  
  .page_subtitle__iAJUg {
    font-size: 1.2rem;
  }
  
  .page_navigation__sIIfG {
    gap: 1rem;
    padding: 0.8rem;
  }
  
  .page_navLink__2S7dD {
    padding: 0.4rem 1rem;
    font-size: 1rem;
  }
  
  .page_sectionTitle__hzsAh {
    font-size: 1.8rem;
  }
  
  .page_featureSection__6dJGm, .page_upcomingSection__zHKd7 {
    text-align: center;
  }
  
  .page_sectionTitle__hzsAh::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile portrait mode - iPhone 15 Pro and similar */
@media (max-width: 430px) {
  .page_hero__SKW6o {
    padding: 2rem 1rem;
  }
  
  .page_heroContent__2lPR8 {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .page_title__3jonF {
    font-size: 2rem;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .page_subtitle__iAJUg {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .page_navigation__sIIfG {
    gap: 0.8rem;
    padding: 0.6rem;
    flex-wrap: wrap;
  }
  
  .page_navLink__2S7dD {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Mobile landscape mode - iPhone 15 Pro and similar */
@media (max-width: 932px) and (max-height: 430px) and (orientation: landscape) {
  .page_hero__SKW6o {
    padding: 2rem 1rem;
    flex-direction: row;
    gap: 1rem;
  }
  
  .page_heroContent__2lPR8 {
    flex: 1;
    min-width: 200px;
    padding-right: 1rem;
    margin-bottom: 0;
  }
  
  .page_heroImageContainer__BC5je {
    flex: 0 0 200px;
    min-width: 200px;
    max-width: 200px;
  }
  
  .page_heroImage__Q6NCQ {
    max-width: 180px;
    height: auto;
  }
  
  .page_title__3jonF {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .page_subtitle__iAJUg {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .page_cta__zCVvt {
    margin-top: 0.5rem;
  }
  
  .page_ctaButton__tHxa2 {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

.page_hiddenAdminLink__h1LA_ {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 0.8rem;
  color: rgba(0, 119, 182, 0.7);
  text-decoration: none;
  padding: 5px;
  transition: color 0.3s;
}

.page_hiddenAdminLink__h1LA_:hover {
  color: rgba(0, 119, 182, 1);
}

.page_modalOverlay__OBdlJ {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.page_modalContent__V7EIS {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  max-width: 500px;
  width: 90%;
}

.page_closeButton__fiZmr {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

