.mobile-container {
  .landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px; /* Add space for the footer */
    position: relative; /* For absolute footer positioning */

    .hero-section {
      padding: 0.3rem;
      background-color: #070b10;
      border-radius: 1rem;
      color: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      flex-shrink: 0;

      .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        /* gap: 1rem;
        margin-bottom: 0.5em; */
      }

      .hero-logo {
        width: 100px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }

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

      .seminar-title {
        font-size: 1.2rem;
        font-weight: 700;
        /* margin-bottom: 0.25rem; */
      }

      .seminar-subtitle {
        font-size: 0.85rem;
        opacity: 0.9;
        font-weight: 700;
      }
    }

    .events-section {
      flex: 1;
      overflow-y: auto;
      padding: 0 1rem;

      h2 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 1.5rem 0 1rem;
        color: #333;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary-orange);
        position: sticky;
        top: 0;
        background: white;
        z-index: 1;
      }

      .upcoming-events-title, .past-events-title {
        margin-top: 0.75rem;
        color: var(--primary-orange);
      }

      .events-list {
        .event-row {
          padding: 0.75rem;
          border: 1px solid #e9ecef;
          border-radius: 0.5rem;
          margin-bottom: 1rem;
          background: white;

          .event-info {
            .event-title {
              font-weight: 600;
              font-size: 1rem;
              margin-bottom: 0.5rem;

              a {
                color: #333;
                text-decoration: none;

                &:hover {
                  color: var(--primary-orange);
                }
              }
            }

            .event-details {
              display: flex;
              flex-direction: column;
              gap: 0.5rem;
              color: #666;
              font-size: 0.9rem;

              .event-location {
                &:before {
                  content: "📍";
                  margin-right: 0.25rem;
                }
              }

              .event-date {
                &:before {
                  content: "📅";
                  margin-right: 0.25rem;
                }
              }
            }
          }
        }

        .no-events {
          padding: 1.5rem;
          text-align: center;
          color: #666;
          background: #f8f9fa;
          border-radius: 0.5rem;
          border: 1px dashed #dee2e6;
        }
      }
    }

    .sticky-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      background: white;
      border-top: 1px solid #e9ecef;
      z-index: 10;

      .container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .button {
        width: 100%;
        padding: 0.75rem;
        text-align: center;
        font-weight: 500;
      }
    }
  }
}
