
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #000000);
    color: #f5f5f5;
}

header {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 3px 6px rgba(255, 0, 0, 0.3);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #ff3c3c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    background-color: #111;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff3c3c;
}

.alt-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 5%;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.row.reverse {
    flex-direction: row-reverse;
}

.row img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #333;
}

.row p {
    width: 45%;
    font-size: 18px;
    color: #ff3c3c;
    font-weight: 500;
    line-height: 1.6;
    text-align: justify;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #aaa;
    margin-top: 40px;
    box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.2);
}

