/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ustawienia ogólne */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #121212;
    color: #fff;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Nagłówek */
header {
    text-align: center;
    background-color: #1c1c1c;
    padding: 20px 0;
}

header img {
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.5em;
    color: #f4b400;
}

header p {
    font-size: 1.2em;
    color: #ddd;
}

/* Pasek kontaktowy */
#contact-bar {
    background-color: #f4b400;
    color: #121212;
    text-align: center;
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#contact-bar a {
    color: #121212;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

/* Sekcja usług */
#services .services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#services .service {
    flex: 1 1 30%;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #1c1c1c;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

#services .service:hover {
    transform: translateY(-10px);
}

#services img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

#services h3 {
    margin-top: 10px;
    color: #f4b400;
}

/* Sekcja "O nas" i kontakt */
#about, #contact {
    background-color: #1c1c1c;
    padding: 20px 0;
    margin: 20px 0;
    text-align: center;
}

#about p, #contact p {
    margin-top: 10px;
    color: #ddd;
}

/* Styl odnośników w sekcji kontakt */
#contact a {
    color: #ddd;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

#contact a:visited {
    color: #ddd;
}

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