* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: #2a2a2a;
    color: #edaf42;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.banner {
    width: 100%;
    height: 200px;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner img {
    max-height: 180px;
    max-width: 100%;
    height: auto;
    padding: 20px;
}

a {
    color: #edaf42;
}

nav {
    background-color: #1f1f1f;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.desktop-menu {
    display: flex;
    gap: 25px;
    padding: 0 20px;
}

.desktop-menu a {
    color: #edaf42;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.desktop-menu a:hover {
    background-color: #edaf42;
    color: #2a2a2a;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #edaf42;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #1f1f1f;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    z-index: 999;
}

.mobile-menu a {
    color: #edaf42;
    text-decoration: none;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    margin: 2px;
}

.mobile-menu a:hover {
    background-color: #edaf42;
    color: #2a2a2a;
}

.content-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    flex: 1;
}

h1, h2 {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #edaf42;
    padding-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.section {
    margin-bottom: 3rem;
    background-color: #1a1a1a55;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #1a1a1a;
    color: #edaf42;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid #edaf4233;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.impressum-link,
.newsletter-link {
    color: #edaf4280;
    font-size: 0.7em;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.impressum-link:hover,
.newsletter-link:hover {
    color: #edaf42;
}

.social-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    background-color: #1a1a1a;
    color: #edaf42;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #edaf4233;
}

.social-btn:hover {
    background-color: #edaf42;
    color: #2a2a2a;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.language-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.language-btn {
    padding: 8px 16px;
    background-color: #1a1a1a55;
    color: #edaf42;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.language-btn:hover {
    background-color: #2a2a2a;
    color: #edaf42;
}

.language-btn.selected {
    background-color: #edaf42;
    color: #1a1a1a;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: #1a1a1a55;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #edaf4233;
}

.pricing-card h3 {
    color: #edaf42;
    margin-bottom: 1rem;
    font-size: 1.5em;
}

.pricing-card .price {
    font-size: 2em;
    color: #edaf42;
    margin: 1rem 0;
}

ul {
    margin-left: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #edaf4233;
    border-radius: 5px;
    background-color: #1a1a1a55;
    color: #edaf42;
    font-size: 1em;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #edaf4280;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background-color: #edaf42;
    color: #2a2a2a;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #d89c3a;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info a {
    color: #edaf42;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #d89c3a;
}

.sidebar {
    width: 100%;
    position: sticky;
    top: 120px;
    height: calc(100vh - 140px);
    overflow-y: auto;
    box-sizing: border-box;
}

.blog-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    min-height: 70vh;
}

.main-content {
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#searchInput {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #edaf4233;
    color: #edaf42;
    margin-bottom: 1rem;
    box-sizing: border-box;
    border-radius: 5px;
}

.article-list {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.article-item {
    width: 100%;
    margin: 0.5rem 0;
    padding: 12px;
    background: #1a1a1a55;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.article-item:hover {
    background: #edaf4211;
}

.default-message {
    text-align: center;
    opacity: 0.6;
    padding: 4rem;
}

.post {
    background-color: #1a1a1a55;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post img {
    width: 152px;
    height: 152px;
    margin-right: 2rem;
    border-radius: 10px;
    object-fit: cover;
    float: left;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a55;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a55;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .post img {
        width: 100%;
        height: auto;
        float: none;
        margin: 0 0 1rem 0;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }
}
