 
 /* ================= OFFERS SECTION ================= */
        .offers-section {
            padding-top: 30px;
            padding-bottom: 100px;
            background: #fff;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .offer-card {
            position: relative;
            width: 32%;
        }

        .offer-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .offer-content {
            position: absolute;
            bottom: -70px;
            left: 40px;
            background: #fff;
            padding: 25px 25px;
            width: 91%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .offer-content h3 {
            font-family: Cinzel, Palatino Linotype, sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 15px;
        }

        .offer-content a {
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 2px;
            color: #b08a32;
            font-weight: 600;
        }

        .offer-content a span {
            margin-left: 5px;
        }

        @media(max-width: 992px) {
            .container {
                flex-direction: column;
            }
            .offer-card {
                width: 100%;
                margin-bottom: 80px;
            }
            .offer-content {
                bottom: -30px;
                left: 20px;
                width: 85%;
            }
        }