<style>
    /* === POPRAWKA: USUNIĘTE STYLOWANIE BODY === */
    /* Nie zmieniamy układu całej strony, żeby menu się nie psuło */
    
    /* === GŁÓWNY KONTENER (HERO) === */
    .hero {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        display: flex;
        flex-direction: row;
        align-items: stretch; /* Karty równej wysokości */
        justify-content: center;
        gap: 25px; /* Odstęp między kartami */
        max-width: 1100px;
        width: 100%;
        
        /* CENTROWANIE I MARGINESY 4PX */
        margin: 4px auto; 
        
        padding: 10px;
        box-sizing: border-box;
        background-color: transparent; /* Tło przeźroczyste, by pasowało do strony */
    }

    /* === WYGLĄD KART (Lewa i Prawa) === */
    .hero-card {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        flex: 1; /* Podział szerokości 50% na 50% */
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left; /* Domyślnie tekst do lewej */
    }

    /* === TYPOGRAFIA === */
    .hero-card h1 {
        font-size: 26px;
        color: #222;
        margin-top: 0;
        margin-bottom: 15px;
        line-height: 1.3;
        font-weight: 700;
    }

    .hero-card .subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    /* === SEKCJA SZCZEGÓŁÓW (Lewa karta) === */
    .details-box {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        /* Granatowy pasek z lewej */
        border-left: 4px solid #1e3a8a; 
    }

    .details-box h2 {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 15px;
        color: #222;
    }

    .details-box p {
        margin: 10px 0;
        font-size: 14px;
        line-height: 1.4;
        color: #444;
    }

    /* === ZEGAR (STYL ZE ZDJĘCIA) === */
    .countdown-container {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
        flex-wrap: wrap;
    }

    .time-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card {
        /* TŁO PÓŁ NA PÓŁ: Góra jasna, dół granatowy */
        background: linear-gradient(to bottom, #e9ecef 50%, #1e3a8a 50%);
        width: 85px;
        height: 95px;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        
        /* Styl cyfry */
        font-size: 38px;
        font-weight: 800;
        color: #fff;
        text-shadow: 0 3px 6px rgba(0,0,0,0.4); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .label {
        margin-top: 12px;
        font-size: 11px;
        font-weight: bold;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* === PRZYCISK (Granatowy) === */
 .btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600
}
.btn-primary{background:var(--brand);color:#fff}
.btn-outline{border:2px solid var(--brand);color:var(--brand);background:transparent}

    /* === RESPONSYWNOŚĆ (TELEFONY) === */
    @media (max-width: 900px) {
        .hero {
            flex-direction: column;
            height: auto;
            margin-top: 10px;
            gap: 15px;
        }
        
        .hero-card {
            width: auto;
            padding: 25px;
        }

        .hero-card h1 { font-size: 22px; text-align: center; }
        .hero-card .subtitle { text-align: center; }
        
        .card {
            width: 70px;
            height: 80px;
            font-size: 28px;
        }
    }
</style>