/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Header Styling */
.header {
    background-color: #004080;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

/* Main Content Container */
.container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* College Title */
.college-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #004080;
    margin-bottom: 20px;
}

/* College Info Section */
.college-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.image-section {
    flex: 1;
    text-align: center;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.video-section {
    text-align: center;
    margin-top: 10px;
}

.video-section iframe {
    width: 100%;
    max-width: 400px;
    height: 220px;
    border-radius: 8px;
}

.details-section {
    flex: 2;
}

.details-section h2 {
    font-size: 22px;
    color: #004080;
    margin-bottom: 10px;
}

.details-section p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.details-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.details-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .college-info {
        flex-direction: column;
        align-items: center;
    }
    .details-section {
        text-align: center;
    }
}
