* { margin: 0; padding: 0; box-sizing: border-box; }


    /* Main Content */
    .resources-section {
      background-color : #e6fafa;  
      padding: 70px 20px;
      width: 100%;
      margin: auto;
      margin: 0 auto;
      text-align: center;
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #004D40;
      text-decoration: underline;
    }

    /* New Resource Card Design */
    .resource-grid {
      display: grid;
      max-width: 900px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding-top: 20px;
      margin: auto;
    }

    .resource-card {
      background-color: #fcfcfc;
      background-image: linear-gradient(135deg, #fcfcfc, #e0e6e4);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .resource-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background-color: #004D40;
      border-radius: 12px 12px 0 0;
      transition: background-color 0.3s ease;
    }

    .resource-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .resource-card:hover::before {
      background-color: #f39c12; /* A vibrant color to make the hover effect pop */
    }

    .icon-container {
        width: 80px;
        height: 80px;
        background-color: #004D40;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        transition: background-color 0.3s ease;

        i{scale: 3;
         color: white;}
    }
    
    .resource-card:hover .icon-container {
      background-color: #387661;
    }

    .icon-container svg {
        fill: #fff;
        width: 40px;
        height: 40px;
    }

    .resource-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 10px 0;
      color: #004D40;
      transition: color 0.3s ease;
    }
    
    .resource-card p {
      font-size: 1rem;
      font-weight: 400;
      margin: 0 0 25px 0;
      color: #4a5568;
      transition: color 0.3s ease;
    }

    .download-button {
      display: inline-block;
      padding: 12px 30px;
      background-color: #07525e;
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .download-button:hover {
      background-color: #004D40;
      transform: translateY(-2px);
    }