/* Základní kontejner stránky */
.o-nas-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Styly pro jednotlivé sekce */
.o-nas-page section {
    margin-bottom: 80px;
}

/* 1. ÚVODNÍ SEKCE (HERO) */
.o-nas-hero {
    text-align: center;
    margin-bottom: 60px;
}

.o-nas-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #23395B;
}

.o-nas-hero .subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6e6e73;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.o-nas-hero .hero-image {
    width: 100%;
    height: 400px;
    background-color: #f5f5f7;
    /* SEM VLOŽTE ODKAZ NA VÁŠ OBRÁZEK */
    background-image: url('URL_VASEHO_HLAVNIHO_OBRAZKU.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
}

/* 2. SEKCE HODNOT (S IKONAMI) */
.o-nas-values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
    background-color: #f5f5f5; /* Barva ikony */
    border-radius: 50%;
    /* background-image: url('URL_IKONY.svg'); */
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #6e6e73;
    line-height: 1.7;
}

/* 3. SEKCE MISE (TEXT A OBRÁZEK) */
.o-nas-mission {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-text p {
    color: #6e6e73;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
    height: 350px;
    background-color: #f5f5f7;
    /* SEM VLOŽTE ODKAZ NA DRUHÝ OBRÁZEK */
    background-image: url('URL_VASEHO_DRUHEHO_OBRAZKU.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

/* 4. VÝZVA K AKCI (CTA) */
.o-nas-cta {
    text-align: center;
    background-color: #1d1d1f;
    color: #fff;
    padding: 50px 30px;
    border-radius: 16px;
}

.o-nas-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.o-nas-cta p {
    color: #a1a1a6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #007aff;
    color: #fff;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Responzivita pro mobilní zařízení */
@media (max-width: 768px) {
    .values-grid,
    .o-nas-mission {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .o-nas-hero h1,
    .o-nas-values h2,
    .mission-text h2,
    .o-nas-cta h2 {
        font-size: 2rem;
    }

    .o-nas-hero .subtitle {
        font-size: 1rem;
    }
}