
 @import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Mulish, system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8fafc;
}


.header {
  position: fixed;
  inset: 0 0 auto 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
}


.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 140px 20px 100px;
  background-color: #0f172a;
  background-image: url('./Hero-image.jpg');
  background-size: cover;
  background-position: 83% center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  z-index: 1;
}


.hero-bg,
.hero-orb,
.hero-orb-1,
.hero-orb-2,
.hero-orb-3,
.hero-grid {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start; 
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title-main,
.hero-title-year {
  display: block;
  font-weight: 700;
  background: linear-gradient(90deg, #57c4ff 0%, #90ffe0 10%, #a47cff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: moveGradient 3s ease-in-out infinite;
}

.hero-title-main {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 8px;
}

.hero-title-year {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  margin-bottom: 20px; 
  animation-delay: 0.5s;
}

@keyframes moveGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  margin-bottom: 28px; 
  max-width: 520px;
}

.hero-subtitle-line1,
.hero-subtitle-line2 {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: #e5edff;
  font-weight: 500;
  line-height: 1.3;
}

.hero-subtitle-line1 {
  margin-bottom: 4px;
}

.hero-meta {
  font-size: 1rem;
  color: #dbeafe;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-meta strong {
  color: #fff;
}


.hero-meta .hero-time {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem); 
  font-weight: 600;
  margin-top: 4px;
}

.hero-date-display {
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  color: #fff;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #2760e2 0%, #4e7dff 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(64, 112, 213, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #1f4fcc, #3f6ff5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(64, 112, 213, 0.4);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.5);
  color: #e5edff;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.75);
}

.hero-note {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-top: 18px;
  max-width: 480px;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}


.hero-right {
  display: flex;
  justify-content: flex-end;
  align-self: flex-start; 
}

.hero-form-card {
  width: 100%;
  max-width: 420px;
  height: auto; 
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.85));
  border-radius: 18px;
  padding: 26px 26px 30px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(18px);
}

.hero-form-heading {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.hero-form-meta {
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-top: 8px;
}


.hero-timer {
  display: flex;
  align-items: center;
  gap: 8px;              
  flex-wrap: nowrap;
  margin-top: 20px;       
  margin-bottom: 0;       
  overflow-x: auto;
}

.timer-cell {
  min-width: 58px;        
  max-width: 95px;       
  flex: 1 1 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;    
  padding: 10px 6px;     
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;      
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.timer-value {
  font-size: 1.9rem;   
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 6px;     
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.timer-label {
  font-size: 0.7rem;    
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.timer-sep {
  font-size: 1.7rem;      
  font-weight: 700;
  color: #fff;
  margin: 0 3px;          
  opacity: 0.6;
}

.hero-status {
  margin-top: 14px;      
  font-size: 1.1rem;
  font-weight: 600;
  color: #60a5fa;
}


section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 20px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #2563eb;
  margin: 0 auto 20px;
}

.section-header p {
  font-size: 1.25rem;
  color: #475569;
}

.why-matters,
.learn,
.event-details {
  background: #fff;
}

.who-for,
.different {
  background: #f1f5f9;
}

.content-text {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 20px;
}


.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s;
  width: 100%;
  max-width: 380px;
}

.card:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 32px;
  height: 32px;
  color: #2663eb;
  margin-bottom: 16px;
  filter: invert(27%) sepia(98%) saturate(2547%) hue-rotate(217deg)
    brightness(91%) contrast(91%);
}

.card-text {
  color: #1e293b;
  font-weight: 500;
}


.learn-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.learn-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 4px;
}

.learn-text {
  font-size: 1.125rem;
  color: #1e293b;
}


.event-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.event-detail-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.event-detail-item:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.event-detail-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #2563eb;
}

.event-detail-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

.event-detail-value {
  font-size: 1.35rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
}


.different .section-header h2 {
  color: #0f172a;
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.different-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

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

.different-card h3 {
  color: #2563eb;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.different-card p {
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.6;
}

.hosted-by {
  text-align: center;
  font-size: 1.125rem;
  color: #475569;
  margin-top: 20px;
}

.hosted-by strong {
  color: #0f172a;
}

.cta {
  padding: 60px 0;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.8;
}


.certificate-block {
  padding: 60px 20px;
  background: #fff;
}

.certificate-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.certificate-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 2px solid #3b82f6;
  border-radius: 20px;
  padding: 35px 45px;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.certificate-content:hover {
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.certificate-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  padding: 18px;
}

.certificate-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-text {
  flex: 1;
}

.certificate-text h2 {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.certificate-text p {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}


.agenda-section {
  background: #fff;
  padding: 60px 20px;
}

.agenda-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.agenda-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1));
}

.agenda-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.agenda-marker {
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  background: #2563eb;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.agenda-content {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
}

.agenda-content:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.2);
}

.agenda-title {
  font-size: 1.25rem;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 8px;
}

.agenda-subtitle {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.agenda-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.agenda-time-pill {
  display: inline-block;
  color: #0e172a;
  background: #e8f2ff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}


#why-matters {
  padding-bottom: 40px;
}

#agenda {
  padding-top: 40px;
}


@media (max-width: 1024px) and (min-width: 641px) {
  .hero-inner {
    gap: 32px;
    padding: 0 20px;
  }

  .hero-form-card {
    max-width: 360px;
  }

  .hero-title-main {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  }

  .hero-title-year {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    margin-bottom: 18px;
  }

  .card {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}


@media (max-width: 768px) {
  .header {
    padding: 14px 16px;
  }

  .logo-img {
    height: 37px;
  }

  .hero {
    padding: 120px 20px 80px;
    background-image: url('./Hero-image-mobile.jpg');
  }

  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-form-card {
    max-width: 100%;
  }

  .hero-title-main {
    font-size: clamp(2.4rem, 5.5vw, 3.2rem);
    margin-bottom: 6px;
  }

  .hero-title-year {
    font-size: clamp(2.1rem, 5vw, 2.9rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
  }

  .hero-subtitle-line1,
  .hero-subtitle-line2 {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
  }

  .hero-date-display {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  }

  .hero-meta {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-meta .hero-time {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  }

  .event-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .different-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .agenda-section {
    padding: 50px 20px;
  }

  .agenda-timeline {
    max-width: 100%;
  }

  .agenda-timeline::before {
    left: 8px;
  }

  .agenda-item {
    padding-left: 45px;
    margin-bottom: 36px;
  }

  .agenda-marker {
    width: 20px;
    height: 20px;
    left: -1px;
    top: 10px;
    border-width: 3px;
  }

  .agenda-content {
    padding: 24px;
  }

  .agenda-title {
    font-size: 1.15rem;
  }

  .agenda-subtitle {
    font-size: 1.08rem;
  }

  .agenda-description {
    font-size: 0.98rem;
  }

  .agenda-time-pill {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  #why-matters {
    padding-bottom: 32px;
  }

  #agenda {
    padding-top: 32px;
  }

  
  .hero-timer {
    margin-top: 14px;
    gap: 6px;
  }

  .timer-cell {
    min-width: 48px;
    max-width: 75px;
    padding: 7px 4px;
    min-height: 65px;
  }

  .timer-value {
    font-size: 1.45rem;
    margin-bottom: 5px;
  }

  .timer-label {
    font-size: 0.65rem;
  }

  .timer-sep {
    font-size: 1.5rem;
    margin: 0 2px;
  }
}


@media (max-width: 640px) {
  .header {
    padding: 12px 12px;
  }

  .logo-img {
    height: 33px;
  }

  .hero {
    padding: 110px 16px 70px;
    background-image: url('./Hero-image-mobile.jpg');
  }

  section {
    padding: 60px 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 15px;
  }

  .card {
    max-width: 100%;
  }

  .event-detail-item {
    padding: 28px;
  }

  .different-card {
    padding: 24px;
  }

  .different-card h3 {
    font-size: 1.125rem;
  }

  .email-form {
    flex-direction: column;
  }

  .btn {
    padding: 14px 28px;
    font-size: 16px;
    max-width: 320px;
  }

  .hero-title-year {
    margin-bottom: 14px;
  }

  .hero-subtitle {
    margin-bottom: 18px;
  }

  .hero-date-display {
    font-size: clamp(1rem, 2.8vw, 1.2rem);
  }

  .hero-meta .hero-time {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
  }

  .agenda-section {
    padding: 44px 16px;
  }

  .agenda-timeline::before {
    left: 7px;
  }

  .agenda-item {
    padding-left: 40px;
    margin-bottom: 32px;
  }

  .agenda-marker {
    width: 18px;
    height: 18px;
    left: -1px;
    top: 10px;
  }

  .agenda-content {
    padding: 20px;
  }

  .agenda-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .agenda-subtitle {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .agenda-description {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .agenda-time-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  #why-matters {
    padding-bottom: 28px;
  }

  #agenda {
    padding-top: 28px;
  }

  
  .hero-timer {
    margin-top: 12px;
    gap: 5px;
  }

  .timer-cell {
    min-width: 42px;
    max-width: 65px;
    padding: 6px 3px;
    min-height: 60px;
    border-radius: 8px;
  }

  .timer-value {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .timer-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .timer-sep {
    font-size: 1.35rem;
  }

  .hero-status {
    font-size: 1rem;
    margin-top: 10px;
  }


  .certificate-block {
    padding: 50px 16px;
  }

  .certificate-wrapper {
    padding: 0;
  }

  .certificate-content {
    padding: 25px 20px;
    gap: 20px;
  }

  .certificate-icon {
    width: 75px;
    height: 75px;
  }
}


@media (max-width: 480px) {
  .cta {
    padding: 40px 0;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .hero-title-main {
    font-size: clamp(2.1rem, 6.5vw, 2.8rem);
    margin-bottom: 5px;
  }

  .hero-title-year {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
    margin-bottom: 12px;
  }

  .hero-subtitle-line1,
  .hero-subtitle-line2 {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  }

  .hero-subtitle {
    margin-bottom: 10px;
  }

  .hero-date-display {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
  }

  .hero-meta .hero-time {
    font-size: clamp(1.1rem, 3.2vw, 1.3rem);
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .agenda-section {
    padding: 40px 16px;
  }

  .agenda-timeline::before {
    left: 6px;
    width: 2px;
  }

  .agenda-item {
    padding-left: 35px;
    margin-bottom: 28px;
  }

  .agenda-marker {
    width: 16px;
    height: 16px;
    left: -1px;
    top: 10px;
    border-width: 2px;
  }

  .agenda-content {
    padding: 18px;
  }

  .agenda-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .agenda-subtitle {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .agenda-description {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .agenda-time-pill {
    font-size: 0.7rem;
    padding: 5px 11px;
    margin-bottom: 9px;
    letter-spacing: 0.01em;
  }

  #why-matters {
    padding-bottom: 24px;
  }

  #agenda {
    padding-top: 24px;
  }


  .hero-timer {
    gap: 4px;
    margin-top: 10px;
  }

  .timer-cell {
    min-width: 38px;
    max-width: 58px;
    padding: 5px 2px;
    min-height: 56px;
  }

  .timer-value {
    font-size: 1.2rem;
  }

  .timer-label {
    font-size: 0.56rem;
  }

  .timer-sep {
    font-size: 1.25rem;
    margin: 0 1px;
  }

 
  .certificate-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 18px;
    gap: 20px;
  }

  .certificate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
}


@media (max-width: 380px) {
  .hero-timer {
    gap: 3px;
  }

  .timer-cell {
    min-width: 35px;
    max-width: 54px;
    padding: 4px 2px;
    min-height: 52px;
  }

  .timer-value {
    font-size: 1.1rem;
  }

  .timer-label {
    font-size: 0.52rem;
  }

  .timer-sep {
    font-size: 1.15rem;
  }

  .agenda-section {
    padding: 36px 14px;
  }

  .agenda-item {
    padding-left: 32px;
    margin-bottom: 24px;
  }

  .agenda-marker {
    width: 14px;
    height: 14px;
  }

  .agenda-content {
    padding: 16px;
  }

  .agenda-title {
    font-size: 1rem;
  }

  .agenda-subtitle {
    font-size: 0.95rem;
  }

  .agenda-description {
    font-size: 0.9rem;
  }

  .agenda-time-pill {
    font-size: 0.68rem;
    padding: 5px 10px;
    margin-bottom: 8px;
  }

  #why-matters {
    padding-bottom: 20px;
  }

  #agenda {
    padding-top: 20px;
  }
}


@media (max-width: 360px) {
  .agenda-section {
    padding: 36px 14px;
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding-left: 20px;   
  }
}


@media (max-width: 480px) {
  .hero-left {
    padding-left: 20px;
  }
}
