        body {
            font-family: Arial, sans-serif;
            background: #f4f4f4;
            margin: 0;
            padding: 0;
        }

        header {
            background: #00594d url('../img/header.jpg') center center/cover no-repeat;
            color: rgb(252, 227, 0);
            background-color: white;
            text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
            padding: 1rem 0;
            text-align: center;
            font-size: 2.6em;
            height: 200px;
        }


        nav {
            background: #8B4513;
            padding: 0.5rem 0;
            text-align: center;
        }

        .menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: inline-block;
        }

        .menu>li {
            display: inline-block;
            position: relative;
        }

        .menu a {
            color: #fff;
            margin: 0 1rem;
            text-decoration: none;
            font-weight: bold;
            padding: 0.5rem 1rem;
            display: block;
            cursor: pointer;
        }

        .dropdown-content {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
            position: absolute;
            background: #8B4513;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1;
            margin-top: 0.5rem;
        }

        .dropdown-content li {
            display: block;
        }

        .dropdown-content a {
            margin: 0;
            padding: 0.5rem 1rem;
        }

        .dropdown.open .dropdown-content {
            opacity: 1;
            visibility: visible;
        }

        main {
            max-width: 800px;
            margin: 2rem auto;
            background: #fff;
            padding: 2rem;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        section {
            display: none;
        }

        section.active {
            display: block;
        }

        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            bottom: 0;
        }

        @media (max-width: 600px) {
            header {
                font-size: 1.2em;
                padding: 10px;
            }

            body {
                font-size: 14px;
            }
        }