 /* My Offer Section */
        .offer-section {
            background: #2C2C2C;
            padding: 60px 40px 80px 40px;
        }

        .offer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .offer-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
        }

        .offer-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .offer-content {
            flex: 1;
            color: white;
        }

        .offer-title {
            font-family: 'Cormorant', serif;
            font-size: 2.2rem;
            font-weight: 500;
            margin-bottom: 25px;
            color: white;
        }

        .offer-text {
            font-family: 'Calibri', sans-serif;
            font-size: 1rem;
            line-height: 1.7;
            color: #e0e0e0;
            font-weight: 300;
        }
