/* --- RESET & BASIC STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333333;
  line-height: 1.6;
}

.world-single-cell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.app {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

/* --- HEADER --- */
.header-logo-bar {
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 40px;
}

.main-logo {
  max-height: 50px;
  width: auto;
}

/* --- HERO SECTION --- */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
    align-items: center;
  }
  .hero-image-wrapper, .hero-text-wrapper {
    flex: 1;
  }
}

.image-single-cell {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.one-cell-changes {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111;
}

.span-light {
  font-weight: 300;
}

.text-gradient {
  background: linear-gradient(45deg, #007bff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-the-power {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 16px;
}

/* --- MARQUEE --- */
.marquee {
  width: 100%;
  background-color: #111111;
  color: #ffffff;
  padding: 15px 0;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 6px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
  gap: 50px;
}

.ticker-date {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- TWO COLUMN MAIN SPLIT --- */
.main-split-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .main-split-container {
    flex-direction: row;
  }
  .left-content-column {
    flex: 1.4;
  }
  .right-registration-column {
    flex: 1;
    position: sticky;
    top: 20px;
    height: fit-content;
  }
}

/* --- LEFT COLUMN TEXT BLOCKS --- */
.content-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid #eef0f2;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #111;
}

.section-text {
  color: #555;
  margin-bottom: 12px;
}

.section-subtext {
  color: #888;
  font-style: italic;
  font-size: 0.95rem;
}

.info-list {
  padding-left: 20px;
}

.info-list li {
  margin-bottom: 12px;
  color: #444;
}

/* --- RIGHT COLUMN / CONTRAST CARD --- */
.contrast-embed-card {
  background: #ffffff;
  border: 2px solid #007bff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,123,255,0.08);
  text-align: center;
}

.center-text {
  text-align: center;
}

.form-promo-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.contrast-action-container {
  background: #f1f7ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.register-cta-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
}

.contrast-button {
  display: block;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(0,123,255,0.25);
}

.contrast-button:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}

.contrast-button:active {
  transform: translateY(1px);
}

.mission-bio-grey-wrapper {
  margin-top: 20px;
}

.mission-bio-grey {
  max-width: 140px;
  height: auto;
  opacity: 0.6;
}

/* --- FOOTER --- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
  border-top: 1px solid #e9ecef;
  margin-top: 40px;
}

.date-badge {
  max-height: 60px;
}

.p {
  font-size: 0.9rem;
  color: #888;
}