* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    line-height: 1.6;
}
.header {
    padding: 0;
    background: #570e17;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
}
.header .logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}
.header .logo img {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(300px, 62vw);
    object-fit: contain;
}
.header a.logo,
.header a.logo:hover,
.header a.logo:focus {
    color: inherit;
    text-decoration: none;
}
.header .nav-wrap {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
}
.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}
.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px 2px;
    margin: 0;
    padding: 0;
}
.nav-links li {
    margin: 0;
}
.header .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}
.header .nav-links a:hover,
.header .nav-links a:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    text-decoration: none;
}
.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    background: url('../img/stoks1.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 20px;
    color: white;
    text-align: center;
}
.hero-content {
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}
.hero-content h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.hero-content p {
    margin: 10px 0;
    font-size: 16px;
}
.cta-button {
    background-color: #2d5d34;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}
.container {
    width: 95%;
    margin: 20px auto;
    background: white;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.title {
    text-align: center;
    font-size: 20px;
    color: #333;
    margin: 15px 0;
    font-weight: bold;
}
.section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 5px solid #d9534f;
}
h2 {
    color: #d9534f;
    font-size: 18px;
    margin-bottom: 10px;
}
ul {
    padding-left: 20px;
    margin: 10px 0;
}
li {
    margin-bottom: 5px;
}
a {
    color: #d9534f;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.map-embed {
    border: 0;
    display: block;
    width: 100%;
    height: 350px;
}

.map-fallback {
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .header-inner {
        padding: 10px 16px;
    }
    .menu-toggle {
        display: block;
    }
    .header .nav-wrap {
        flex: 1 1 100%;
        justify-content: stretch;
        order: 3;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        justify-content: stretch;
        gap: 0;
        padding: 8px 0 4px;
    }
    .nav-links.active {
        display: flex;
    }
    .header .nav-links a {
        width: 100%;
        text-align: center;
        border-radius: 6px;
    }
    .nav-links li {
        width: 100%;
    }
    .hero {
        padding-left: 10px;
        padding-right: 2px;
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        padding: 20px;
    }
}
