/* Shared styles */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-top: 70px !important;
    margin: 0;
    background-color: #d1e9e4;
    font-family: "Readex Pro", sans-serif;
}

.container {
    max-width: 800px;
    width: 100%;
    background: #2c6070;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    box-sizing: border-box;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 800px;
    padding: 15px 10px;
    background: #2c6070;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    margin-top: 0;
    display: flex;
    gap: 15px;
    box-sizing: border-box;
    border-bottom: 3px solid #1e4754;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #d9228a;
    font-weight: bold;
}

h1 {
    color: white; /* Changed from #2c6070 to contrast with background */
    font-size: 2.5em;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

/* Responsive heading */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
        margin: 15px 0;
    }
}

h2 {
    color: #d9228a;
    font-size: 1.8em;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #328734;
}
