* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right, #fce4ec, #e0f7fa);
      color: #333;
      line-height: 1.6;
    }

    /* ===== HEADER ===== */
    header {
      text-align: center;
      padding: 60px 20px 30px;
    background: linear-gradient(to right, #d4fc79, #96e6a1, #84fab0, #8fd3f4, #a6c1ee);
      color: white;
        border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;
    }

    header h1 {
      font-size: 38px;
      margin-bottom: 15px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
    }
      header .subline {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  color:antiquewhite;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

    .intro {
      font-size: 18px;
      max-width: 800px;
      margin: 20px auto;
      text-align: center;
    }

    /* ===== GRID CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    /* ===== CARD ===== */
    .card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card .content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card h2 {
      color: lightcoral;
      margin-bottom: 12px;
      font-size: 22px;
    }

    .card p {
      font-size: 15px;
      color: #444;
    }

    /* ===== FOOTER ===== */
    footer {
      text-align: center;
      padding: 15px;
      background: pink;
      color: black;
      margin-top: 40px;
      font-size: 15px;
    }
    footer .social {
  margin-top: 8px;
  font-size: 16px;
}

footer .social a {
  color: black;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

footer .social a:hover {
  color: darkred;
}