 .skillset-container{
    .section-title {
        color: #4f46e5;
        /* Indigo-600 */
        font-size: 1.75rem;
        /* 28px */
        font-weight: 700;
        /* Bold */
        margin-bottom: 1.5rem;
        /* 24px */
        text-align: center;
      }

 }

 .vocation-skillset-container {
   font-family: 'Inter', sans-serif;
   /* Using Inter font for better accuracy */
   display: flex;
   flex-wrap: wrap;
   /* Allow wrapping on smaller screens */
   justify-content: center;
   gap: 25px;
   /* More padding around the entire content */
   /*background-color: #f8f9fa;*/
   /* Lighter background color */
   min-height: 100vh;
   /* Ensure body takes full viewport height */
   align-items: flex-start;

   /* Align items to the top */

  .container {
      background-color: white;
      border-radius: 12px;
      /* More rounded corners */
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      /* Stronger, more accurate shadow */
      width: 48%;
      /* Adjust width for better responsiveness */
      max-width: 550px;
      /* Max width for larger screens */
      overflow: hidden;
      display: flex;
      flex-direction: column;
        min-height: 100vh !important;
    }





    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .container {
        width: 90%;
        /* Take more width on tablets */
      }
    }

    @media (max-width: 768px) {
      .container {
        width: 95%;
        /* Take almost full width on mobile */
        margin-bottom: 20px;
        /* Add space between stacked containers */
      }

      body {
        flex-direction: column;
        /* Stack columns on small screens */
        align-items: center;
      }
    }

    .header {
      color: white;
      padding: 20px 25px;
      /* Increased padding */
      font-size: 1rem;
      /* Slightly larger font */
      font-weight: 600;
      /* Semi-bold */
      text-align: center;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .ai-header {
      background-color: #66BB6A;
      /* Accurate green header color */
    }

    .it-header {
      background-color: #FFCA28;
      /* Accurate orange header color */
    }

    .section {
      display: flex;
      align-items: flex-start;
      /* Align items to the top, not stretch */
      padding: 15px 25px;
      /* Reintroduced vertical padding for the section */
      border-bottom: 1px solid #e0e0e0;
      /* Lighter border */
    }

    .section:last-child {
      border-bottom: none;
    }

    .number-card {
      min-width: 45px;
      /* Fixed width for the rectangle */
      height: 45px;
      /* Fixed height for the rectangle */
      border-radius: 6px;
      /* Slightly rounded corners for the rectangle */
      display: flex;
      justify-content: center;
      align-items: center;
      /* Center number vertically */
      color: white;
      font-weight: 700;
      /* Bold number */
      font-size: 1em;
      margin-right: 20px;
      /* Space to the right of the card */
      flex-shrink: 0;
      /* Prevent card from shrinking */
      /* Removed align-self: stretch and vertical padding here */
    }

    /* Accurate colors for the cards based on the image */
    .circle-01 {
      background-color: #8BC34A;
    }

    /* Prime Effort - Light Green */
    .circle-02 {
      background-color: #64B5F6;
    }

    /* Work Environment - Light Blue */
    .circle-03 {
      background-color: #AED581;
    }

    /* Career Rewards - Lighter Green */
    .circle-04 {
      background-color: #F06292;
    }

    /* Key Skills - Pinkish */
    .circle-05 {
      background-color: #9575CD;
    }

    /* Personality Emphasize - Purple */
    .circle-06 {
      background-color: #4DD0E1;
    }

    /* Personality Avoid - Light Teal */

    .content {
      flex-grow: 1;
      /* Allow content to take remaining space */
      /* Removed vertical padding here, padding is now on the section */
    }

    .content h3 {
      margin-top: 0;
      margin-bottom: 6px;
      /* Slightly more space below heading */
      color: #333;
      font-size: 15px;
      /* Slightly larger heading font */
      font-weight: 600 !important;
      /* Semi-bold heading */
    }

    .content p {
      margin: 0;
      color: #555;
      font-size: 12px;
      /* Slightly larger body text */
      line-height: 1.5;
      font-weight: 500;
      /* Improved line height for readability */
    }
 }

