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

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: #f8b400;
    color: #333;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.about, .categories, .contact {
    padding: 3rem 0;
    text-align: center;
}

.impress, .privacy {
    padding: 3rem 0;
    text-align: left;
}

.about h2, .categories h2, .contact h2, .impress h2, .privacy h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.category-item {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.category-item img {
    width: 100%;
    border-radius: 10px;
}

.category-item h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

footer {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

footer a {
     color: #fff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}