* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Główna karta */
.card {
    background: #111;
    max-width: 900px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    text-align: center;
}

/* Grafika */
.banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Sekcja tekstowa */
.info {
    padding: 40px 30px;
}

.info h1 {
    color: #8fdfff;
    font-size: 32px;
    margin-bottom: 10px;
}

.info p {
    color: #ccc;
    margin-bottom: 30px;
}

/* Przyciski */
.contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #ff9500;
    transform: scale(1.05);
}

/* Responsywność */
@media (max-width: 600px) {
    .info h1 {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
}