body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding:0;
      background: #f4f4f4;
    }

    .experience-section {
      max-width: 1100px;
      margin: auto;
      text-align: center;
      color: black;
    }

    .experience-section h2 {
      margin-bottom: 30px;
      font-size: 2rem;
      color: hotpink;
    }

    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.3rem;
      color: #333;
    }

    .card p {
      font-size: 0.95rem;
      color: #555;
    }