
    .activities-container {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    h1 {
            font-size: 8em;
            color: #283891;
         margin-bottom: -20px;
        }
         .subtitle {
            font-size: 1.9em;
            color: #00FFD1;
            font-weight: bold;
            margin-bottom: -80px;
        }

    .menu-bar {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 15px;
      width: 100%;
      margin-left: 90px;
    }

    .menu-item {
         margin-left: 900px;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      border: 1px solid #ccc;
      width: fit-content;
    }

    .menu-item:hover {
      background-color: #e0e0e0;
    }

    .menu-item.active {
      background-color: #c0c0c0;
    }

    .image-container {
      width: 80%;
      overflow: hidden;
      border-radius: 8px;
      position: relative;
      margin-bottom: 15px;
      min-height: 600px;
      margin-left: 600px;
    }

    .content-image {
      width: 100%;
      height: auto;
      display: none;
      border-radius: 8px;
      position: absolute;
      top: 0;
      left: 0;
      
    }

    .content-image.active {
      display: block;
    }

    .image-navigation {
      position: absolute;
      bottom: 10px;
      right: 10px;
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .nav-arrow {
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 5px;
      cursor: pointer;
    }

    .nav-arrow:hover {
      background-color: rgba(0, 0, 0, 0.9);
    }

    .description-box {
      width: 40%;
      background-color: #283891;
      padding: 20px;
      border-radius: 8px;
      color: #ffffff;
      margin-left: 400px;
      margin-top: -50px;
    }

    .explore-button {
      background-color: #4caf50;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    .explore-button:hover {
      background-color: #388e3c;
    }