* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

header {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header nav {
    margin-top: 10px;
}

header nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #99039971;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.section {
    padding: 40px 0;
}

.section h2 {
    text-align: center;
}

.section.light {
    background: #fff;
}

.card {
    background: white;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 10px;
}

.card a {
    color: #0077ff;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

.list {
    list-style: none;
    padding: 0;
}

.list li {
    background: #eee;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    margin-top: 20px;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text {
    max-width: 50%;
    padding: 20px;
}

.image-container {
    position: relative;
    width: 300px;
    height: 200px;
}

.main-img {
    height: 100%;
    border-radius: 10px;
    float: right;
    transition: transform 0.3s ease;
}

.hover-img {
    position: absolute;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.img1 { height: 70%; top: -75%; left: -60%; }
.img2 { height: 100%; bottom: -40%; left: -125%; }
.img3 { height: 150%; bottom: -90%; right: -85%; }

.img4 { height: 100%; top: -50%; right: -75%; }
.img5 { height: 100%; bottom: -65%; right: -95%; }
.img6 { height: 150%; top: -65%; left: -140%; }

.img7 { height: 150%; top: -100%; right: -90%; }
.img8 { height: 150%; bottom: -175%; right: -55%; }
.img9 { height: 180%; top: -60%; left: -163%; }

.image-container:hover{
    z-index: 5;
}

.image-container:hover .main-img {
    transform: scale(2);
}

.image-container:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.course-grid img {
    width: 100%;
    margin: 3%;
}

.course-grid img:hover {
    transform: scale(1.1);
}

.university-img {
    height: 125px;
    margin-right: 10px;
}
