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

body {
    background: #1a1a1a;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: center; /* Wyśrodkowanie nagłówka */
    align-items: center;
    padding: 20px;
    background: #222;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar h1 {
    font-size: 28px;
    color: #FFD700; /* Złoty kolor */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif; /* Nowa czcionka */
}

.contact-info {
    display: flex;
    gap: 15px;
}

.btn {
    background: #ff4444; /* Czerwony dla buttonów, jeśli chcesz zmienić, daj znać! */
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn:hover {
    background: #cc3333;
}

.hero {
    padding: 180px 20px 20px;
    text-align: center;
    min-height: 300px;
    margin-top: 20px;
    background: url('cross-bg.jpg') no-repeat center center fixed, url('https://images.unsplash.com/photo-1618517351618-2f59a79f1d1b?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    opacity: 0.5;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 40px;
    color: #ff4444; /* Czerwony, jeśli chcesz zmienić, daj znać! */
    text-transform: uppercase; /* Wielkie litery dla spójności */
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 15px;
}

.services {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.services h3 {
    font-size: 26px;
    color: #00FF7F; /* Neonowy zielony */
    text-transform: uppercase; /* Wielkie litery dla spójności */
    margin-bottom: 20px;
}

.services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    list-style: none;
}

.services li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

footer p {
    font-size: 14px;
    margin-bottom: 5px;
}

footer a {
    color: #ff4444;
    text-decoration: none;
}

footer a:hover {
    color: #cc3333;
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .navbar h1 {
        font-size: 24px;
    }
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .hero {
        padding: 200px 15px 15px;
        min-height: 250px;
    }
    .hero h2 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .services ul {
        grid-template-columns: 1fr;
    }
    .services li {
        font-size: 14px;
    }
}