<style>
    /* Body text and headings in dark brown */
    body, h1, h2, h3, h4, h5, h6, p, li, a {
        color: #4b2e2e !important; /* Dark brown text everywhere */
        font-family: Arial, sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        background-color: #fdf9f3;
        scroll-behavior: smooth; /* Smooth scrolling */
    }

    /* Header */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    header img {
        height: 120px;
        width: auto;
    }

    /* Navigation menu */
    nav ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }
    nav ul li {
        margin-left: 25px;
    }
    nav ul li a {
        text-decoration: none;
        color: #4b2e2e !important;
        font-weight: bold;
        transition: color 0.3s;
    }
    nav ul li a:hover {
        color: #27ae60;
    }

    /* Hamburger menu for mobile */
    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }
    .menu-toggle div {
        width: 25px;
        height: 3px;
        background-color: #4b2e2e;
        margin: 4px 0;
    }

    @media (max-width: 800px) {
        nav ul {
            display: none;
            flex-direction: column;
            background-color: #fff;
            position: absolute;
            top: 100%;
            right: 0;
            width: 200px;
            border: 1px solid #ccc;
        }
        nav ul li {
            margin: 15px 0;
            text-align: center;
        }
        .menu-toggle {
            display: flex;
        }
    }

    /* Sections */
    section {
        padding: 60px 20px;
        max-width: 1000px;
        margin: auto;
    }
    .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #27ae60;
        color: white;
        border-radius: 5px;
        text-decoration: none;
        margin-top: 10px;
    }

    /* Footer */
    footer {
        background-color: #ffd6e0;
        color: #4b2e2e;
        padding: 30px 20px;
        text-align: center;
    }
    footer a {
        color: #4b2e2e !important;
        margin: 0 10px;
        text-decoration: none;
        font-weight: bold;
    }
    footer a:hover {
        text-decoration: underline;
    }
</style>
