html, body {
  width: 100%;
  overflow-x: hidden;
}
        :root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #ff6600;
    --light-color: #f1faee;
    --dark-color: #0a1128;
    --text-color: #333;
    --text-light: #f8f9fa;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: var(--text-color);
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
       header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
        .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
        .logo {
            height: 45px;
        }
        .main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
        .main-nav li {
            margin-left: 30px;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .main-nav a:hover {
            color: var(--accent-color);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn:hover {
            background-color: #c1121f;
            transform: translateY(-2px);
        }
        .hero {
            background-image: url('graj-i-zdobywaj.webp');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        section {
            padding: 60px 0;
        }
        section:nth-child(even) {
            background-color: white;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
        }
        h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 30px 0 20px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .bonus-item {
            background-color: var(--light-color);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 4px 4px 0;
        }
        .payment-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .payment-table th, 
        .payment-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .payment-table th {
            background-color: var(--secondary-color);
            color: white;
        }
        .payment-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        footer {      
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: var(--text-light);
            margin: 0 15px;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 60px 20px 40px;
        background-position: top;
        margin-top: 100px;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .hero-content {
        padding: 15px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
    .main-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .main-nav li {
        margin: 0;
    }
    .main-nav .btn {
        
        font-size: 0.95rem;
    }
    .logo {
        height: 30px;
    }
}
@media (min-width: 769px) {
    .hero {
        margin-top: 90px;
    }
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.payment-table {
  width: 100%;
  min-width: 500px; /* Ensures horizontal scroll on smaller devices */
  border-collapse: collapse;
}
.legal-info {
  border-left: 4px solid var(--primary-color);
  padding-left: 16px;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #555;
  background-color: #f9f9f9;
}