/* Container style */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Hero Section */
.product-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 40px;
    border-radius: 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pompa-hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.hero-feature i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Overview Section */
.overview-section {
    padding: 120px 0;
    margin: 40px;
    background-color: var(--color-background);
    border-radius: 20px;
}

.section-label {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.key-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.number-item {
    text-align: center;
}

.number-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.number-item .label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    margin: 40px;
    background-color: #f8f7f3;
    border-radius: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px;
}

.benefit-card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.benefit-list li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    margin: 40px;
    background-color: var(--color-background);
    border-radius: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding: 20px;
    position: relative;
}

.step {
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--color-text-light);
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    opacity: 0.2;
    z-index: 1;
}

/* Funding Section */
.funding-section {
    padding: 120px 0;
    margin: 40px;
    background-color: #f8f7f3;
    border-radius: 20px;
}

.funding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 20px;
}

.funding-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.funding-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.funding-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* To zapewni równą szerokość */
    gap: 30px;
}

.funding-card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%; /* Dodane dla pewności */
}

.funding-amount {
    font-size: 2.5rem; /* Zwiększony rozmiar dla lepszej czytelności */
    font-weight: 700;
    color: var(--color-primary);
    margin: 20px 0;
    white-space: nowrap; /* Zapobiega zawijaniu tekstu */
}

/* Dodane style dla zapewnienia spójności w listach */
.funding-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
    width: 80%; /* Ustandaryzowana szerokość list */
}

.funding-card li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.funding-card li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    margin: 40px;
    background-color: var(--color-background);
    border-radius: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}

.faq-item {
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    margin: 40px auto;
    width: 97%;
    background-color: var(--color-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    opacity: 0.8;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.cta-description {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: white;
    color: var(--color-text);
}

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

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.info-item i {
    color: white;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .product-hero,
    .overview-section,
    .benefits-section,
    .process-section,
    .funding-section,
    .faq-section,
    .cta-section {
        margin: 20px;
    }

    .overview-grid,
    .funding-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .product-hero,
    .overview-section,
    .benefits-section,
    .process-section,
    .funding-section,
    .faq-section,
    .cta-section {
        margin: 10px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits-grid,
    .funding-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    .overview-content h2,
    .funding-info h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .benefit-card,
    .step,
    .funding-card,
    .faq-item {
        padding: 30px;
    }
}