body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.container {
    width: 80%;
    margin: auto;
}
header {
    background-color: #8dc63f;
    padding: 20px 0;
}
.logo {
    width: 150px;
    float: left;
}
nav ul {
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
.hero {
    position: relative;
    background: url('hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 0; /* Zwiększenie wysokości kontenera */
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ciemniejszy overlay */
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 48px;
    margin: 0;
}
.hero p {
    font-size: 24px;
}
.hero .btn {
    background-color: #f39c12;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}
.about, .testimonials, .contact, .gallery {
    text-align: center;
    padding: 50px 0;
}
.team {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.team-member {
    text-align: center;
}
.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.gallery-item img {
    width: 100%;
    height: auto;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    display: inline;
    margin-left: 10px;
}
footer ul li a {
    color: white;
    text-decoration: none;
}
form div {
    margin-bottom: 15px;
}
form label {
    display: block;
    margin-bottom: 5px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
form button {
    background-color: #8dc63f;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: #79a534;
}
#confirmationMessage {
    margin-top: 15px;
}
