.reputed-wrapper {
    background-color: white;
    padding: 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reputed-title {
    font-size: 2rem;
    color: #333;
    margin: 20px 0;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.table th,
.table td {
    padding: 8px 15px;
    vertical-align: middle;
    border: 1px solid #dee2e6;
    text-align: left;

}

.table thead {
    background-color: #3FD5BA;
}

.table thead th {
    font-weight: 600;
    color: #000;
    background-color: #3FD5BA;
    border-bottom: 2px solid #dee2e6;
}

.table-hover tbody tr:hover {
    background-color: rgba(63, 213, 186, 0.1);
}

/* Info Content Styles */
.reputed-content {
    max-width: 800px;
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 5px solid #3FD5BA;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reputed-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.reputed-content h3 {
    font-size: 1.1rem;
    color: #34495e;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.reputed-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.reputed-content strong {
    color: #333;
}

@media (max-width: 600px) {
    .reputed-content {
        padding: 15px;
    }

    .reputed-content h2 {
        font-size: 1.3rem;
    }
}