body {
    font-family: Georgia, serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4efe2;
    color: #2d2418;
    line-height: 1.6;
}

h1 {
    text-align: center;
    color: #5b3a1a;
    border-bottom: 3px solid #8b6f47;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

h2 {
    color: #6b4c2a;
    border-left: 4px solid #8b6f47;
    padding-left: 10px;
}

h3 {
    color: #6b4c2a;
    border-left: 2px solid #8b6f47;
    padding-left: 5px;
}

nav {
    text-align: center;
    margin: 20px 0;
    padding: 12px;
    background-color: #d8c6a3;
    border-radius: 5px;
}

nav a {
    color: #4a2f15;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
}

nav a:hover {
    color: #8b0000;
}

p {
    text-align: justify;
}

ul {
    background-color: #ede2c4;
    padding: 15px 35px;
    border-radius: 5px;
}

hr {
    display: none;
}

.banner {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 0px;
}

.sted {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.sted img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #8b6f47;
}

.sted div {
    flex: 1;
}

.pic{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.pic img {
    width: 600px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #8b6f47;
}

.pic div {
    flex: 1;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    display: inline-block;
}

.main-menu > li {
    position: relative;
}

.main-menu li a {
    padding: 0 10px;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;

    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);

    list-style: none;
    margin: 0;
    padding: 8px 0;
    
    background-color: #d8c6a3;

    min-width: 180px;

    border-radius: 5px;

    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    z-index: 1000;
}

.dropdown li {
    display: block !important;
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 8px 16px;
    text-align: left;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li:hover {
    background-color: #c8b38a;
}

.dropdown li:hover a {
    color: #8b0000;
}

.breadcrumb {
    font-size: 0.9em;
    color: #6b4c2a;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    .banner {
        height: 160px;
    }

    .sted {
        flex-direction: column;
    }

    .sted img {
        width: 100%;
        max-width: 400px;
    }

    nav {
        font-size: 0.9em;
    }

}
