body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #2d3436;
    /* Increased from 600px to 900px to fill more horizontal space */
    max-width: 900px; 
    margin: 0 auto;
    padding: 60px 20px;
}

.container {
    /* Ensures the container takes up available room */
    width: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Increased gap for better spacing */
    margin: 30px 0;
}

.image-grid img {
    width: 100%;
    /* Increased height for larger images */
    height: 250px; 
    object-fit: cover;
    border-radius: 12px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased gap */
    margin-top: 40px;
}

.card {
    background: white;
    padding: 20px 30px; /* More padding makes cards look "meatier" */
    border-radius: 12px;
    text-decoration: none;
    color: #2d3436;
    font-weight: 600;
    font-size: 1.1rem; /* Slightly larger text */
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Style for the featured card */
.feature-card {
    margin-top: 20px;
    border: 2px solid #0984e3; /* Added border to make it pop */
    background: #f1f8ff; /* Light blue background to differentiate */
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: normal;
    color: #636e72;
}

/* Ensure the icon is larger for this specific card */
.feature-card i {
    font-size: 1.5rem;
}

.academic {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    border-left: 3px solid #0984e3;
    padding-left: 15px;
}

.timeline-item strong {
    display: block;
    font-size: 1.1rem;
}

.timeline-item p {
    margin: 5px 0 0;
    color: #636e72;
}