* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #eef2f6;
    color: #222;
    line-height: 1.6;
}

/* HEADER */
header {
    background-color: #3b3c98;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-bottom: 5px solid #35d0ba;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
    color: #dbe6f7;
}

/* SLIDESHOW */
#slideshow {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
}

#slideshow img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(59, 60, 152, 0.25);
    transition: opacity 1s ease-in-out;
}

/* NAVIGATION */
nav {
    background-color: #4c4eb5;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 3px solid #35d0ba;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #35d0ba;
    color: #1e1e40;
}

/* MAIN CONTENT */
main {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

section#content {
    margin-top: 20px;
    padding: 20px;
    font-size: 1.1rem;
    color: #2b2d42;
    border-left: 4px solid #35d0ba;
}

/* FOOTER */
footer {
    background-color: #3b3c98;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    border-top: 5px solid #35d0ba;
}

footer p {
    font-size: 0.9rem;
}
