:root {
    --brand-blue: #006687; /* Kolor przewodni z ulotki */
    --brand-dark: #003d52;
    --brand-light: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.navbar {
    background-color: white;
    border-bottom: 3px solid var(--brand-blue);
}

.hero-section {
    background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('header.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
}

.text-brand { color: var(--brand-blue); }
.bg-brand { background-color: var(--brand-blue); }

.feature-icon {
    color: #7ab51d; /* Zielony kolor ptaszków z ulotki */
    font-size: 1.5rem;
    margin-right: 10px;
}

.card-offer {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-offer:hover {
    transform: translateY(-10px);
}

.contact-box {
    background-color: var(--brand-blue);
    color: white;
    border-radius: 0 50px 50px 0;
    padding: 40px;
}

.founder-img {
    border: 5px solid var(--brand-blue);
    max-width: 200px;
}

footer {
    background-color: #f1f1f1;
    padding: 20px 0;
}