* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #111;
    line-height: 1.6;
}

/* HERO HEADER */
.hero {
    height: 100vh;
    background-image: url("images/ME360_Background.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: white;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* ASSIGNMENT SECTIONS */
.assignment {
    padding: 100px 10%;
    border-bottom: 1px solid #eee;
}

.assignment h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

/* CONTENT LAYOUT */
.assignment-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* TEXT */
.assignment-content .text {
    flex: 1;
    max-width: 500px;
}

/* IMAGES */
.assignment-content .images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.assignment-content img {
    width: 100%;
    border-radius: 4px;
}
