/* General Layout */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fcfafa;  /* lighter neutral tone */
    color: #2b2b2b;
}

/* Header and Navigation */
header {
    border-bottom: 3px solid #66172d;  /* darker red */
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.2em;
    margin: 0;
    color: #66172d;
}

.subtitle {
    font-size: 1em;
    color: #4d1e26;
    margin-top: 5px;
    margin-bottom: 20px;
}

/*UPDATED: Centered navigation */
nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #66172d;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #a83240;  /* slightly playful hover red */
    text-decoration: underline;
}

/* Intro Section */
.intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.intro img {
    width: 160px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Section Text */
section h2 {
    color: #66172d;
    margin-top: 0;
}

section p {
    font-size: 1.05em;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

p {
    text-align: justify;
}

