/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Usuń strzałki z pól number */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed navbar */
#payment-gateway {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0f3b23; /* ciemniejsza zieleń dla lepszego kontrastu */
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(22, 101, 52, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #ea580c;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Logo Fundacji */
.logo-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}


.logo-image {
    height: 74px;
    width: auto;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-fundacja {
    font-size: 0.8rem;
    font-weight: 600;
    color: #166534;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-bo {
    font-size: 1.68rem;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.5px;
}

.logo-mozemy {
    font-size: 1.68rem;
    font-weight: 700;
    color: #ea580c;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #0f3b23;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ea580c; /* pomarańcz z logo */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ea580c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #166534;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('dzieci.jpg') no-repeat center center;
    background-size: cover;
    background-position: right top;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 90px 0 40px;
}

.hero-content {
    flex: 1;
    padding: 24px 20px;
    z-index: 2;
    position: relative;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    border: 2px solid #ea580c;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ea580c;
    color: #ffffff;
}

.cta-button.secondary:hover {
    background: #ea580c;
    color: #ffffff;
}

/* Ujednolicone zachowanie hover dla obu przycisków */
.cta-button:hover,
.cta-button.secondary:hover {
    background: #ea580c;
    color: #ffffff;
    border-color: #ea580c;
}

.cta-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* Wzmocniona czytelność przycisków na tle zdjęcia w sekcji hero */
.hero .cta-button {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.35);
}

.hero .cta-button.secondary {
    background: rgba(0, 0, 0, 0.35);
    border-color: #ea580c;
}

.hero .cta-button.secondary:hover {
    background: #ea580c;
}

/* Wymuszenie hover także dla lewego przycisku w sekcji hero */
.hero .cta-button:hover {
    background: #ea580c;
    color: #ffffff;
    border-color: #ea580c;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 20px;
}

.hero-background-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-background-image:hover {
    transform: scale(1.02);
}

.hero-placeholder {
    text-align: center;
    padding: 2rem;
}

.hero-placeholder i {
    font-size: 8rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.hero-placeholder p {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Sekcje */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f3b23;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #16a34a);
    border-radius: 2px;
}

/* Aktualności */
.news {
    padding: 100px 0;
    background: #ffffff;
}

.news-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22, 101, 52, 0.15);
}

.news-card.featured {
    border: 3px solid #ea580c;
    background: linear-gradient(135deg, #ffffff 0%, #fff5ef 100%);
}

.news-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 15px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.news-image img:hover {
    transform: scale(1.05);
}



.news-content h3 {
    color: #0f3b23;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-content p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scenario-box {
    background: linear-gradient(135deg, #ffffff 0%, #fff5ef 100%);
    border: 2px solid #ea580c;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.1);
}

.scenario-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.2);
    border-color: #dc2626;
}

.scenario-number {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.scenario-content p {
    margin: 0;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.call-to-action {
    background: #dcfce7;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #16a34a;
    margin-top: 1.5rem;
}

/* Wesprzyj Nas */
.support {
    padding: 100px 0;
    background: #ffffff;
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bank-details h3 {
    color: #0f3b23;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bank-details {
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 15px;
    border: 2px solid #bbf7d0;
}

.bank-details p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.account-info {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid #bbf7d0;
}

.account-number {
    background: #166534;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Wyłącz podświetlenie konta bankowego w wersji mobilnej */
@media (max-width: 768px) {
    .account-number {
        background: transparent;
        color: #0f3b23;
        padding: 0;
        border-radius: 0;
        font-family: inherit;
        font-weight: normal;
    }
}

.payment-gateway {
    background: white;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payu-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.payu-logo img {
    height: 32px;
    opacity: 0.8;
}

.gateway-placeholder {
    text-align: center;
    background: transparent;
    padding: 0 1.5rem 1.5rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.payment-gateway::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #dc2626, #ea580c);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gateway-placeholder i {
    font-size: 3rem;
    color: #ea580c;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
}

.gateway-placeholder h4 {
    color: #0f3b23;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(15, 59, 35, 0.1);
}

.gateway-placeholder p {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Formularz PayU */
.payu-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.payu-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f3b23;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payu-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #f9fafb;
    font-family: inherit;
}

.payu-form input:focus {
    outline: none;
    border-color: #ea580c;
    background: white;
    box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.1);
}

.payu-form input:invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.payu-form input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Przyciski z kwotami */
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.amount-btn {
    padding: 14px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.amount-btn:hover::before {
    left: 100%;
}

.amount-btn:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.amount-btn.active {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    border-color: #ea580c;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
}

.amount-btn.active:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

/* Przycisk PayU - styl jak w sekcji head */
#payu-button {
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    color: #ea580c;
    border: 2px solid #ea580c;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

#payu-button:hover {
    background: #ea580c;
    color: white;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

#payu-button:hover i {
    color: white;
}

#payu-button:active {
    transform: translateY(0);
}

#payu-button:active i {
    color: white;
}

#payu-button:disabled {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#payu-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid #fecaca;
    font-size: 14px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.1);
    line-height: 1.6;
}

#payu-error strong {
    color: #dc2626;
    font-weight: 700;
}

#payu-error ol {
    margin: 8px 0;
    padding-left: 20px;
}

#payu-error li {
    margin-bottom: 4px;
}

/* Poznaj Nas */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-banner {
    background: linear-gradient(135deg, #166534 0%, #ea580c 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.foundation-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.contact-details i {
    color: #16a34a;
}

.statute-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #16a34a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.statute-link:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.mission h3, .leadership h3 {
    color: #166534;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.mission-list {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.25rem;
}

.mission-list li {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.7;
}

.leaders {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leader {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(22, 101, 52, 0.1);
}

.leader-photo {
    flex-shrink: 0;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #16a34a;
}

.photo-placeholder i {
    font-size: 2rem;
}

.leader-info h4 {
    color: #0f3b23;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.leader-info p {
    color: #6b7280;
}

.leader-education {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Stopka */
.footer {
    background: #166534;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Pomarańczowy tytuł pierwszej sekcji w stopce */
.footer .footer-content .footer-section:first-child h4 {
    color: #ea580c;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

/* Social media links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Białe linki w stopce */
.footer-section a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ea580c !important;
    text-decoration: underline;
}

.footer-section a:visited {
    color: white !important;
}

.footer-section a:active {
    color: #ea580c !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsywność */
@media (max-width: 768px) {
    /* Zmniejszone odstępy między sekcjami na mobile */
    .news, .support, .about {
        padding: 60px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(22, 101, 52, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-text {
        align-items: center;
    }
    
    .logo-link {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 62px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        padding-top: 90px;
        background-position: 80% top; /* przesunięcie kadru w prawo na mobile */
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin: 20px 0;
    }
    
    .hero-background-image {
        height: 300px;
    }
    
    .hero-text h1 {
        font-size: 2.6rem;
        line-height: 1.2;
    }
    
    .news-card {
        flex-direction: column;
        text-align: center;
    }
    
    .news-image {
        width: 100%;
        margin-bottom: 1rem;
        height: 200px;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    
    .hero-background-image {
        height: 250px;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .news-card {
        padding: 1.5rem;
    }
    
    .about-banner {
        padding: 2rem 1.5rem;
    }
    
    .foundation-info h2 {
        font-size: 1.5rem;
    }
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card,
.support-content > div,
.about-content > div {
    animation: fadeInUp 0.6s ease-out;
}

/* Efekty hover dla kart aktualności */
.news-card:hover .news-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Stylizacja linków */
 a {
    transition: all 0.3s ease;
}

/* Efekty cienia dla elementów interaktywnych */
.cta-button,
.statute-link,
.news-card {
    transition: all 0.3s ease;
}

/* Gradient overlay dla hero section */
.hero::before {
    content: none;
}

/* Responsywność bramki płatności */
@media (max-width: 768px) {
    .payment-gateway {
        padding: 1.5rem;
        margin: 1rem 0;
        transform: scale(0.85);
        transform-origin: top center;
    }
    
    .payu-form {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .amount-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    #payu-button {
        padding: 12px 24px;
        font-size: 15px;
    }
    
.gateway-placeholder h4 {
    font-size: 1.8rem;
    color: #0f3b23;
    font-weight: 600;
    margin-bottom: 1rem;
}
    
    .gateway-placeholder i {
        font-size: 2.5rem;
    }
    
    /* Responsywność social media */
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
