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

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

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

.new-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.new-header .logo {
    font-size: 26px;
    font-weight: 700;
    color: #28a745;
}

.new-header nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #28a745;
}

.btn {
    background: #28a745;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #218838;
}

.hero-section {
    background: url('images/baner-glowny.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #28a745;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 20px;
}

.benefit {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.benefit h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.new-footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Poprawne miejsce dla benefit-images */
.benefit-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
    text-align: center;
}

.benefit-image {
    max-width: 300px;
    width: 100%;
}

.benefit-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.benefit-image p {
    font-size: 16px;
    color: #333;
}

}

}
