    .filters {
      display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
    background: #f9f9f9;
    padding: 1rem;
    border: 1px solid #eee;
    }

    .filter-btn {
      padding: 12px 20px;
      background-color: #e0e0e0;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background-color: #ffb31b;
      color: white; 
    }

    .services-grid {
      display: flex;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  flex-wrap: wrap;
	  box-sizing:border-box;
    }

    .services-card {
	width:24%;
      background: #333;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
	  color:#fff;
	  padding:20px;
	  box-sizing:border-box;
	  margin:5px;
    }

    .services-card.hidden {
      display: none;
    }

    .services-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }


    .services-content {
      padding: 5px;
      flex-grow: 1;
    }

    .services-title {
      font-size: 1.5rem;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 400;
	padding: 15px 0;
    }

    .services-description {
      font-size: 0.95rem;
    color: #fff;
    opacity: .7;
    }


span.filter-name
 {
    text-transform: lowercase;
    display: block;
    padding: 6px 12px;
    border: 1px solid #eee;
    border-radius: 25px;
    width: fit-content;
    opacity: .6;
    font-size: .9rem;
}
.tn-list1 span
 {
    display: block;
    background: #ffffff33;
    padding: 5px 15px;
    margin: 2px;
    border-radius: 20px;
    font-size: .9rem;
    opacity: .7;
}
.tn-list2
 {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .03) 100%);
    border-radius: 16px;
    padding: 16px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.tn-list2 h4
 {
    margin: 0;
    font-weight: 600;
}
.tn-list2 ul {
    padding: 0 10px;
}
li.tn {
    margin: 3px 0;
    font-size: .9rem;
    color: #fffffff2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 8px;
    transition: all .3s ease;
    position: relative;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
}
a.f-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #ffb31b;
    padding: 6px;
    border-radius: 20px;
    color: #000;
}
a.f-btn:hover{background:#fff}
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }

      .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
      }
	  section .container {
    max-width: 90%;
    margin: auto;
}
.abottom {
    margin: 20px 0;
    font-size: 1.3rem;
	}
    }
	 table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }
        
        th, td {
            padding: 12px 15px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        th {
            background-color: #3498db;
            color: white;
            font-weight: bold;
        }
        
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        
        .section-title {
            background-color: #2c3e50;
            color: white;
            font-weight: bold;
            text-align: center;
        }
		td {
    color: #ffffff;
	}
        
        /* Mobile adaptations */
        @media screen and (max-width: 768px) {
            table {
                display: table;
                overflow-x: auto;
                white-space: wrap;
            }
            
            th, td {
                padding: 8px 10px;
                font-size: 14px;
            }
            
            h2 {
                font-size: 20px;
            }
        }
        
        @media screen and (max-width: 480px) {
            
            th, td {
                padding: 6px 8px;
                font-size: 12px;
            }
        }