 body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      scroll-behavior: smooth;
    }

    .section {
      padding: 10px 10px;
      min-height: 40vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid #ddd;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      padding: 16px;
      max-width: 500px;
      width: calc(90% - 48px);
      margin: 20px auto;
      text-align: center;
      overflow: hidden;
    }

    .card img {
      width: 40%;
      height: auto;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
      object-fit: cover;
    }

    .card-title {
      margin-top: 12px;
      font-size: 20px;
      color: #4f8df7;
      font-weight: 600;
    }

    .card p {
      font-size: 14px;
      line-height: 1.5;
      padding: 0 10px;
    }
    
    .footer {
        align-self: left;
      font-size: 10px;
      line-height: 1.5;
      padding: 0px;
    }

    .btn {
      margin-top: 16px;
      padding: 10px 20px;
      background-color: #ff6b6b;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s;
    }

    .btn:hover {
      background-color: #e85a5a;
    }