body {
    max-width:1200px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #fff;
    letter-spacing: 1px;
}

header.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: #111;
    border-bottom: 1px solid #333;
}

.hero-text {
    max-width: 55%;
}

.hero-img {
    width: 40%;
    border: 2px solid #333;
}

section {
    padding: 60px 40px;
    border-bottom: 1px solid #222;
}

.section-img {
    width: 100%;
    margin: 20px 0;
    border: 2px solid #333;
}

/* Pricing */

.pricing {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.price-card {
    background: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    width: 30%;
    min-width: 250px;
}

.price-card.featured {
    border-color: #569cd6;
    background: #111820;
}

.price {
    font-size: 1.4rem;
    margin: 10px 0;
    font-weight: bold;
    color: #79b8ff;
}

.price-card ul {
    padding-left: 18px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    border-top: 1px solid #333;
}

#kontakt {
    padding: 40px;
    background: #111;
    color: #e0e0e0;
}

#kontakt h2 {
    border-left: 6px solid #ffcc00;
    padding-left: 12px;
    margin-bottom: 20px;
}

.contact-info li {
    margin-bottom: 10px;
    list-style: none;
}

.contact-info a {
    color: #79b8ff;
    text-decoration: none;
}

#kontakt form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#kontakt input, #kontakt textarea {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1a1a1a;
    color: #fff;
    resize: vertical;
}

#kontakt button {
    padding: 12px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

#kontakt button:hover {
    background: #e6b800;
}

@media (max-width: 768px) {
    header.hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-img {
        width: 100%;
        margin-top: 20px;
    }

    .pricing {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
    }
}

