body {
      background: #f9f9f9;
      font-family: Arial, sans-serif;
    }

    .box {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 198, 255, 0.3);
    }

    h1, h2 {
      color: #0d6efd;
      font-weight: bold;
    }

    ul li {
      margin-bottom: 8px;
    }

    footer {
      text-align: center;
      background: #0d6efd;
      color: white;
      padding: 15px;
      margin-top: 20px;
      border-radius: 8px 8px 0 0;
    }

    .cta {
      background: #0d6efd;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      transition: 0.3s;
    }
    
    .cta:hover {
      background: #0b5ed7;
    }

    /* Media Queries */
    @media (max-width: 768px) {
      h1 {
        font-size: 1.8rem;
      }
      
      h2 {
        font-size: 1.3rem;
      }
    }