/* oferta.css */

/* Kontener główny dla modułu */
.module-container {
    background-color: #f5f5f5; /* Jasnoszare tło dla spójności */
    padding: 30px 15px; /* Wewnętrzny odstęp */
    border-radius: 10px; /* Zaokrąglone rogi */
    margin: 20px 0; /* Odstęp zewnętrzny */
    width: 100%; /* Pełna szerokość */
    box-sizing: border-box; /* Uwzględnia padding w szerokości */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Delikatny cień dla głębi */
}

/* Główny kontener sekcji */
.oferta-section {
    padding: 0; /* Usuń padding z .module-container */
    background: none; /* Usuń tło, bo mamy je w .module-container */
    box-shadow: none; /* Usuń cień, bo mamy go w .module-container */
}

/* Siatka dla układu dwukolumnowego */
.oferta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie kolumny o równej szerokości */
    max-width: 1400px; /* Maksymalna szerokość */
    margin: 0 auto; /* Wyśrodkowanie */
    gap: 3rem; /* Odstęp między kolumnami */
    padding: 0 2rem; /* Wewnętrzny odstęp */
}

/* Zdjęcie po lewej */
.oferta-image-wrapper {
    order: -1; /* Zdjęcie przesunięte na lewą stronę */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Obraz */
.oferta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Kontener dla treści (prawa kolumna) */
.oferta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

/* Tytuł */
.oferta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Opis */
.oferta-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Sekcja usług */
.oferta-services-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
}

/* Lista usług */
.oferta-services-list {
    list-style: none;
    padding: 0;
}

/* Elementy listy usług */
.oferta-services-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

/* Ikonka przed elementem listy */
.oferta-services-list li::before {
    content: "•";
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Responsywność */
@media (max-width: 1024px) {
    .oferta-grid {
        gap: 2rem; /* Mniejszy odstęp */
    }

    .oferta-title {
        font-size: 2rem;
    }

    .oferta-description {
        font-size: 1rem;
    }

    .oferta-services-title {
        font-size: 1.3rem;
    }

    .oferta-services-list li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .oferta-grid {
        grid-template-columns: 1fr; /* Jedna kolumna */
        padding: 0 1rem;
        gap: 2rem;
    }

    .oferta-image-wrapper {
        order: 0; /* Zdjęcie wraca na górę */
    }

    .oferta-title {
        font-size: 2rem;
    }

    .oferta-content {
        padding: 1rem 0;
    }

    .oferta-services-title {
        font-size: 1.2rem;
    }

    .oferta-services-list li {
        font-size: 0.95rem;
    }
}