.wace-sasce-section {
  background: linear-gradient(180deg, #f0f6fa 0%, #ffffff 100%);
  padding-bottom: 4rem;
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.header-area {
  background: linear-gradient(to right, #e5f2f9, #ffffff); /* lighter blue to white */
  color: #0e4e6f;
  text-align: center;
  padding: 3rem 1rem 2rem;
  border-bottom: 4px solid #c1ddeb;
}


.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.org-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}


.join-message h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.join-message .subtext {
  font-size: 1rem;
  color: #333333; /* dark text for readability */
  margin-bottom: 1rem;
  font-weight: 500;
}


.join-message h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.register-button {
  background-color: #8AA526;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.register-button:hover {
  background-color: #e9a424;
  transform: translateY(-3px);
}

/* Webinar Schedule */
.webinar-schedule {
  padding: 3rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #2d5d7b;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Cards Wrapper */
.card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Cards */
.schedule-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  flex: 1 1 420px;
  max-width: 460px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.schedule-card h3 {
  font-size: 1.4rem;
  color: #1e3d58;
  margin-bottom: 0.5rem;
}

.schedule-card p {
  font-size: 1rem;
  color: #444;
  margin: 0.4rem 0;
}

.schedule-card h4 {
  margin-top: 1rem;
  font-size: 1rem;
  color: #2d5d7b;
  font-weight: 600;
}

.timezone-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.timezone-list li {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .join-message h2 {
    font-size: 1.8rem;
  }

  .join-message h3 {
    font-size: 1.3rem;
  }

  .org-logo {
    height: 50px;
  }

  .card-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
