/* Google Fonts Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.75;
    font-size: 17px;
}

/* HERO */
.hero {
    background: #111;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* SEKCJE */
section {
    max-width: 900px;
    margin: 25px auto;
    padding: 25px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 28px rgba(0,0,0,0.15);
}

/* NAGŁÓWKI */
h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    color: #222;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #e63900, #f77f00);
    margin-top: 8px;
    border-radius: 2px;
}

/* TEKST */
p {
    margin-bottom: 18px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}

ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* INFO SECTIONS (3 kolumny obok siebie) */
.info-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* wycentrowanie całości */
    gap: 20px;
    margin: 40px auto;
}

.info-box {
    flex: 1 1 30%;
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.08);
    text-align: center; /* wycentrowanie tekstu */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.info-box img {
    width: 60px;
    margin-bottom: 15px;
}

/* PRZYCISKI */
.button {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(45deg, #e63900, #f77f00);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* KONTAKT */
.contact-box {
    max-width: 900px;
    margin: 25px auto;
    padding: 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    text-align: center; /* wycentrowanie tekstu */
}

/* STOPKA */
footer {
    text-align: center;
    padding: 25px;
    font-size: 14px;
    color: #555;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
    .info-box {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .info-sections {
        flex-direction: column;
    }

    section, .contact-box {
        margin: 20px 15px;
    }
}
