body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/base_flowers.png') no-repeat center center fixed;
    background-size: cover;
    color: #002b5c;
    position: relative;
    z-index: 1;
}

header {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #002b5c;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0056b3;
}




/* Updated Section Animation */
section {
    max-width: 800px;
    margin: 60px auto 30px; /* reduced from 120px auto 50px */
    padding: 25px;           /* reduced from 40px */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #002b5c;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    position: relative;
    z-index: 2;
}

/* Make Sections Visible When Scrolled Into View */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    text-align: center;
    padding: 15px 10px;
    background: rgba(0, 43, 92, 0.9);
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}