/* --- Layout --- */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #000066;
    margin: 0;
    padding: 20px;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- TOP SECTION --- */
.sm4-top-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.sm4-passport-col {
    flex: 0 0 15%; /* Column 1: 15% width */
    text-align: right;
    padding-right: 20px;
}

.sm4-header-text-col {
    flex: 0 0 85%; /* Column 2: 85% width */
    text-align: center;
}

.sm4-main-title {
    font-size: 2rem;
    margin: 0 0 15px 0;
}

.purple-text {
    color: #990099;
}

/* Container for all instruction text */
.sm4-instructions {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}

/* First Instruction Row */
.instruction-row-top {
    margin-bottom: 15px;
}

/* Divided Row: 80% Text, 20% Ranger Rick */
.instruction-row-split {
    display: flex;
    align-items: center;
    width: 100%;
}

.instruction-col-text {
    flex: 0 0 80%; /* 80% Column for OR/Pamphlet text */
    text-align: center;
    padding-left: 15%; /* Offsets center to align with the top title */
}

.instruction-col-rick {
    flex: 0 0 20%; /* 20% Column for Ranger Rick */
    text-align: left; /* Left aligned within its 20% space */
}

.ranger-rick {
    width: 128px;
    height: 128px;
    display: block;
}

/* --- MAIN SECTION --- */
.sm4-assignment-details {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.persuasive-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.sm4-samples-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px; /* 10px spacing between images */
    margin-top: 20px;
}

.sample-ad {
    width: 302px; /* Set to 302px x 252px per request */
    height: 252px;
    display: block;
}

.sample-pamphlet {
    width: 402px; /* Set to 402px x 202px per request */
    height: 202px;
    display: block;
}

/* --- FOOTER NAV --- */
.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.nav-button {
    background-color: #000066;
    padding: 5px;
    border-radius: 5px;
}

.nav-button:hover {
    background-color: #000099;
}