body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
}

.container {
    max-width: 1100px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1.display-4 {
    font-size: 3.5rem;
}

.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 2rem;
    background-color: #ffffff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.06);
}

.card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    max-height: 400px;
    object-fit: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0d6efd; /* Default blue, override as needed */
    border-radius: 5px;
}

/* Override for academics section */
.section-header h2.academics::after {
    background-color: #198754;
}

/* Override for warning/policy section */
.section-header h2.warning::after {
    background-color: #dc3545;
}

.list-group-item {
    border: none;
    padding: 0.75rem 0;
    border-left: 3px solid transparent;
    transition: border-left 0.3s ease;
}

.list-group-item:hover {
    border-left: 3px solid #0d6efd;
    background-color: #f8f9fa;
}

.list-group-item strong {
    color: #333;
}

.table-custom {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.table-custom th, .table-custom td {
    vertical-align: middle;
    text-align: center;
}

.table-custom thead th {
    background-color: #dc3545;
    color: white;
}

.table-custom tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.table th, .table td {
    vertical-align: middle;
    text-align: left;
}

.lead {
    font-weight: 300;
}

.download-link {
    color: #198754;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #157347;
    text-decoration: underline;
}

.pdf-viewer-container {
    position: relative;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.pdf-viewer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.list-item-with-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.list-item-with-icon .icon {
    font-size: 1.5rem;
    color: #198754;
    margin-right: 1rem;
}

.list-with-icons li {
    position: relative;
    padding-left: 25px;
}

.list-with-icons li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.img-fluid.rounded.shadow {
    max-height: 400px;
    object-fit: cover;
}

.highlight {
    font-weight: 500;
    color: #0d6efd;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    border: none;
    color: white;
    transition: transform 0.2s ease-in-out;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

ol li {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0d6efd;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
}

.route-section h2 {
    color: #198754;
	margin-top: 2rem;
}

.route-section h3 {
	color: #6c757d;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}