/* Reset i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Nagłówek */
.main-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-nav {
    background: white;
}

.flex-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 110px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.top-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-nav ul li a {
    color: #004a99;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.top-nav ul li a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #004a99;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Przyciski */
.btn-primary, .btn-secondary, .btn-link, .btn-app {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #004a99;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
}

.btn-primary:hover {
    background: #003875;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-link {
    background: #667eea;
    color: white;
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.btn-link:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn-app {
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-app:hover {
    background: #34495e;
}

/* Sekcje gradientowe */
.gradient-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 80px 20px;
    margin: 40px 0;
}

.gradient-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #5a6c7d;
}

.values-highlight {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 30px auto 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    color: #2c3e50;
}

/* Siatka oferty */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 40px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.offer-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.offer-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.offer-card p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Zalety */
.advantages-section {
    background: linear-gradient(135deg, #e4e9f2 0%, #d4dce9 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.advantage p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Bankowość online */
.online-banking-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.online-banking-section h2 {
    color: white;
}

.online-banking-section .section-intro {
    color: rgba(255, 255, 255, 0.95);
}

.banking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.banking-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.banking-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.banking-feature h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.banking-feature p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Aktualności */
.news-section {
    padding: 80px 20px;
    background: white;
}

.news-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.news-list {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px 30px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.news-date {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.news-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.news-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Kontakt */
.contact-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    margin: 80px auto;
    max-width: 1200px;
}

.contact-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.contact-info h3, .contact-form h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info h4 {
    color: #667eea;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info p {
    margin: 12px 0;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid #e4e9f2;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #3498db;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #5dade2;
}

/* Responsywność */
@media (max-width: 768px) {
    .flex-nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .gradient-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid,
    .advantages-grid,
    .banking-features {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 15px;
    }
    
    .gradient-section {
        padding: 50px 15px;
    }
}

/* Hero mniejszy (dla podstron) */
.hero-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-small p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Dodatkowe style dla pozostałych stron */

/* Security Hero */
.security-hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Innowacyjna sekcja bezpieczeństwa */
.featured-security {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.innovation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.lead-text {
    font-size: 1.25rem;
    margin: 25px auto 50px auto;
    max-width: 900px;
    color: #5a6c7d;
    line-height: 1.8;
}

.innovation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.innovation-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.innovation-item h3 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.innovation-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Statystyki */
.stats-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
    padding: 50px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #dc3545;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #5a6c7d;
}

/* Dodatkowe klasy pomocnicze */
.text-center {
    text-align: center;
}

.mt-large {
    margin-top: 60px;
}

.mb-large {
    margin-bottom: 60px;
}

/* Dodatkowe style dla podstron */

/* Podtytuły kart */
.account-subtitle,
.card-subtitle {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Listy funkcji */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Przykłady kredytów */
.loan-example {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.highlight-price {
    display: block;
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
    margin-top: 8px;
}

/* Ceny kart */
.card-price {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin: 15px 0;
    display: inline-block;
}

/* Karty kredytowe wizualne */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card-showcase {
    text-align: center;
}

.credit-card {
    width: 100%;
    max-width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 0 auto 25px auto;
    position: relative;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
    font-family: 'Courier New', monospace;
}

.card-debit {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.card-credit {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.card-prepaid {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.card-virtual {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.card-premium {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #f4d03f 0%, #e1a830 100%);
    border-radius: 6px;
    margin-bottom: 30px;
}

.card-number {
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.card-holder {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-logo {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

.card-type {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Tabele porównawcze */
.table-responsive {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e4e9f2;
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f5f7fa;
}

.comparison-table td {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.table-note {
    text-align: center;
    font-size: 0.85rem;
    color: #5a6c7d;
    margin-top: 15px;
    font-style: italic;
}

/* Kroki */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Kalkulator */
.calculator-section {
    background: white;
}

.calculator-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.input-group input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #cbd5e0;
    outline: none;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    border: none;
}

.input-value {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 10px;
}

.calculator-result {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.calculator-result h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin: 20px 0;
}

.result-details {
    margin: 30px 0;
    text-align: left;
}

.result-details p {
    margin: 12px 0;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.result-details strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsywność dla nowych elementów */
@media (max-width: 768px) {
    .cards-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-box {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .credit-card {
        max-width: 300px;
        height: 190px;
        padding: 20px;
    }
    
    .card-number {
        font-size: 1.1rem;
    }
    
    .result-amount {
        font-size: 2.2rem;
    }
}

/* Dodatkowe klasy */
.scam-example {
    background: rgba(220, 53, 69, 0.1);
    border-left: 3px solid #dc3545;
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.emergency-box {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.emergency-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.emergency-step {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.emergency-step h3 {
    color: #dc3545;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.emergency-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.emergency-contact h3 {
    color: white;
    margin-bottom: 20px;
}

.emergency-contact p {
    margin: 10px 0;
    font-size: 1.05rem;
}

/* Strona rejestracji konta */

/* Progress Bar */
.progress-section {
    background: white;
    padding: 40px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e4e9f2;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.progress-step.completed .step-circle {
    background: #27ae60;
    color: white;
}

.progress-step.completed .step-circle::after {
    content: '✓';
    position: absolute;
    font-size: 1.5rem;
}

.step-label {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #5a6c7d;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #667eea;
    font-weight: 600;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: #e4e9f2;
    margin: 0 10px;
}

.progress-step.completed ~ .progress-line {
    background: #27ae60;
}

/* Wybór typu konta */
.account-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.account-selection-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
}

.account-selection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.selection-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.premium-badge {
    background: linear-gradient(135deg, #f4d03f 0%, #e1a830 100%);
    color: #2c3e50;
}

.account-selection-card .advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.account-selection-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.selection-description {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.selection-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.selection-features li {
    padding: 8px 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.btn-select {
    width: 100%;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-select:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Formularz rejestracyjny */
.form-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
}

.form-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
}

.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e4e9f2;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.form-section-group {
    margin-bottom: 35px;
}

.form-section-group h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e9f2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-small {
    grid-column: span 1;
    max-width: 150px;
}

.form-group label {
    color: #2c3e50;
    font


/* Strona RODO */

.rodo-intro {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
}

.last-update {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.rodo-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.rodo-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.rodo-content {
    color: #5a6c7d;
    line-height: 1.8;
}

.rodo-content p {
    margin-bottom: 15px;
}

.info-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.info-box p {
    margin: 8px 0;
    color: #2c3e50;
}

.info-box strong {
    color: #667eea;
}

.info-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.info-box ul li {
    margin: 8px 0;
    color: #5a6c7d;
}

.rodo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.rodo-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.rodo-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.rodo-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.rodo-item p {
    margin: 10px 0;
}

.rodo-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

.rodo-item ul li {
    margin: 8px 0;
    color: #5a6c7d;
}

.rodo-item strong {
    color: #667eea;
    font-weight: 600;
}

/* Kategorie danych */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.data-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #667eea;
}

.data-category h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.data-category ul {
    list-style: none;
    padding: 0;
}

.data-category ul li {
    padding: 8px 0;
    color: #5a6c7d;
    border-bottom: 1px solid #e4e9f2;
}

.data-category ul li:last-child {
    border-bottom: none;
}

.data-category .note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #667eea;
    font-style: italic;
}

/* Odbiorcy danych */
.recipients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.recipient-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.recipient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.recipient-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.recipient-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.recipient-card p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Prawa osób */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.right-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.right-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

.right-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.right-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.right-card p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Środki bezpieczeństwa */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.measure-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.measure-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.measure-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.measure-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.measure-item p {
    color: #5a6c7d;
    font-size: 0.85rem;
}

/* Kontakt RODO */
.contact-rodo-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 20px;
}

.contact-rodo-box h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-method h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-method a {
    color: white;
    text-decoration: underline;
}

.puodo-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.puodo-info h3 {
    margin-bottom: 20px;
}

.puodo-info p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.95);
}

.puodo-info a {
    color: white;
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #667eea;
    margin-top: 15px;
    font-style: italic;
}

.mt-large {
    margin-top: 40px;
}

/* Responsywność */
@media (max-width: 768px) {
    .rodo-section {
        padding: 25px 20px;
    }
    
    .data-categories,
    .recipients-grid,
    .rights-grid,
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .contact-rodo-box {
        padding: 25px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}
