/* oferta.css */

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

        /* Kontener główny */
        .wedding-offer {
            background-color: #091d3e;
            width: 100%;
            padding: 60px 0;
            display: flex;
            justify-content: center;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #ffffff;
        }

        /* Kontener treści */
        .offer-container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 0 20px;
        }

        /* Sekcja zdjęcia */
        .offer-image {
            flex: 1;
            min-width: 300px;
            max-width: 700px;
        }

        .offer-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            object-fit: cover;
            aspect-ratio: 700 / 467;
        }

        /* Sekcja treści */
        .offer-content {
            flex: 1;
            min-width: 300px;
            max-width: 650px;
        }

        .offer-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .offer-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .offer-content ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .offer-content ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .offer-content ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: #00cc99;
            font-size: 1.2rem;
        }

        .offer-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Styl dla przycisku CTA */
        .sekcja1-cta {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        /* Responsywność */
        @media (max-width: 768px) {
            .offer-container {
                flex-direction: column;
                gap: 30px;
            }

            .offer-image,
            .offer-content {
                max-width: 100%;
            }

            .offer-content h2 {
                font-size: 1.8rem;
            }
        }

        /* Optymalizacja PSI */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }

        /* Lazy loading dla obrazu */
        .offer-image img {
            loading: lazy;
        }