  /* Reset dla przełamania ograniczeń motywu */
  .full-width-section {
    width: 100vw !important;
    max-width: 100vw !important; 
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
}

.features-wrapper{
    padding: 5% 0;
}

/* Przełamanie ograniczeń kontenera */
.container-fluid {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Reset dla boxów */
.full-width-section .container-fluid * {
    box-sizing: border-box !important;
}

/* Standardowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden; /* Zapobiega poziomemu przewijaniu */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Nagłówek "BEST QUALITY" */
.quality-header {
    text-align: center;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Główny nagłówek */
.main-heading {
    text-align: center;
    color: var(--text-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Separator */
.separator {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 50px;
}

/* Sekcja z ikonami */
.features-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px;
    min-width: 250px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Sekcja About Us - Full Width */
.about-section {
    position: relative;
    padding: 80px 0;
    width: 100%;
    background-color: var(--cream-background);
    overflow: hidden;
}

.about-background-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-image: url('../img/pattern.png');
background-size: cover;
background-position: bottom;
opacity: 0.2;
z-index: 0; /* Zmiana z 2 na 0, aby obraz był pod zawartością */
}

/* Upewnij się, że zawartość jest nad tłem */
.about-container {
position: relative;
z-index: 1; /* Wartość większa niż z-index tła */
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 20px;
    margin-left: 30px; /* Zmienione z margin-right na margin-left */
    margin-bottom: 30px;
}

.image-container {
    position: relative;
}

.image-container img {
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-main {
    flex: 1.2;
    height: 400px;
}

.image-secondary {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.image-secondary img {
    height: 310px;
    object-position: center;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: left; /* Upewnienie się, że tekst jest wyrównany do lewej */
    background-color: rgba(250, 247, 242, 0.8); /* Półprzezroczyste tło dla lepszej czytelności */
    border-radius: var(--border-radius);
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 16px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.stat-item {
    min-width: 120px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.stat-plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 5px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-learn-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-learn-more:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsywność */
@media (max-width: 992px) {
    .about-images {
        margin-left: 0;
    }
    
    .about-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        justify-content: center;
    }
    
    .feature {
        flex: 0 0 50%;
    }

    .about-container {
        flex-direction: column;
    }
    
    .about-images {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .about-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .feature {
        flex: 0 0 100%;
    }
    
    .about-images {
        flex-direction: column;
    }
    
    .image-main, .image-secondary {
        height: 300px;
    }

    .image-secondary img {
        height: 100%;
    }
    
    .stats-container {
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 0 0 45%;
        margin-bottom: 20px;
    }
}