/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA;
    color: #212529;
    margin: 0;
    line-height: 1.7em;
}

/* Header and Navigation */
header {
    background-color: #001F3F;
    color: #F8F9FA;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #C0A15E;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #F8F9FA;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover, nav ul li a.active {
    color: #C0A15E;
}

/* Main Content Sections */
main {
    padding: 4rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

section {
    margin-bottom: 4rem;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #001F3F;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #C0A15E;
    color: #001F3F;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 2rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #001F3F;
    color: #C0A15E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: #212529;
    color: #F8F9FA;
    text-align: center;
    padding: 2rem;
}

.footer-content p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
