@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f3f5f8;
    color: #2c2c2c;
}

/* PAGE LAYOUT */
.page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}

/* SECTION TITLES */
.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e8449;
    margin-bottom: 18px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #1e8449;
    display: block;
    margin-top: 6px;
}

/* FACILITIES */
.table-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.table-heading {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

/* TABLE */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.modern-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.modern-table tr:last-child {
    border-bottom: none;
}

.modern-table td {
    padding: 12px 14px;
}

.modern-table tr:hover {
    background: #f8fafb;
}

.sr {
    width: 60px;
    text-align: center;
    font-weight: 500;
    color: #1e8449;
}

/* CONTACT */
.contact-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* ================================
   Psychological Lab – Modern Table
   Scoped CSS (Safe to use anywhere)
================================ */

.psy-table-wrapper {
    max-width: 1000px;
    margin: 60px 0;
    margin-left: 280px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Title */
.psy-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

/* Subtitle */
.psy-subtitle {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Table */
.psy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Header */
.psy-table thead th {
    background: #f9fafb;
    color: #111827;
    font-size: 14.5px;
    font-weight: 600;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
}

/* Body cells */
.psy-table td {
    padding: 13px 16px;
    font-size: 14.5px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

/* Column alignment */
.psy-table td:nth-child(1),
.psy-table td:nth-child(3) {
    text-align: center;
    font-weight: 500;
    color: #1e8449;
    width: 110px;
}

/* Row striping */
.psy-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* Hover */
.psy-table tbody tr:hover {
    background: #eef6f1;
    transition: background 0.25s ease;
}

/* Remove last border */
.psy-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile */
@media (max-width: 640px) {
    .psy-title {
        font-size: 21px;
    }

    .psy-table td,
    .psy-table th {
        font-size: 13.5px;
        padding: 12px;
    }
}

.psy-table tbody td{
    text-align: center;
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .page-container {
        grid-template-columns: 1fr;
    }
}
