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

    body {
      font-family: Arial, sans-serif;
      background-color: #87ceeb;
    }

    .container {
      max-width: 100%;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    h2 {
      text-align: center;
      margin-bottom: 2rem;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(35% , 1fr));
      gap: 1.5rem;
    }

    .card {
      background: white;
      border-radius: 8px;
      padding: 1rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .card img {
      width: 100%;
      border-radius: 6px;
      margin-bottom: 0.5rem;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .card img:hover {
      transform: scale(1.05);
    }

    .card h3 {
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }

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

    header {
      background: #1a2238;
      color: #eaeaea;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 20px;
      width: 100%;
      padding: 20px;
    }

    .logo {
      margin-right: auto;
      margin-left: 10px;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all .5s ease 0s;
    }

    .logo:hover {
      color: #FFD700;
      transform: rotate(5deg);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: white;
      margin: 4px 0;
    }

    nav ul {
      display: flex;
      gap: 25px;
    }

    li {
      list-style-type: none;
    }

    li a {
      color: #eaeaea;
      text-decoration: none;
      transition: all .5s ease 0s;
    }

    li a:hover {
      color: #ff6a3d;
      transform: rotate(5deg);
    }

    .btn-cta {
      border: none;
      font-size: 16px;
      padding: 6px 12px;
      background: #ff0000;
      color: #eaeaea;
      border-radius: 8px;
      cursor: pointer;
      margin-left: 10px;
    }

    @media (max-width: 900px) {
      nav ul {
        display: none;
        flex-direction: column;
        background: #1a2238;
        position: absolute;
        right: 0;
        top: 60px;
        width: 200px;
        padding: 1rem;
      }

      nav ul.show {
        display: flex;
        background: #1a2238;
      }

      .menu-toggle {
        display: flex;
      }

      .btn-cta {
        margin-left: 0;
        margin-top: 10px;
      }
    }

    a {
      color: #eaeaea;
      text-decoration: none;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.8);
    }

    .modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

.copyright {
  color: #eaeaea;
  background: #1a2238;
}
span {
  color: #800080;
}

.btn-pink{
  background: #B721FF;
  color: #fff;
  border-color: #B721FF;
  transition: all 0.5s ease-in-out;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 0.55rem 0;
  width: 130px;
  font-weight: 600;
  margin: 0 0.5rem;
  cursor: pointer;
  color:#fff;
}
