     @import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Source+Sans+Pro:wght@300;400;600&display=swap');
        

        
        .massage-promo {
            max-width: 900px;
            background: linear-gradient(145deg, #fefdfb 0%, #f9f6f1 100%);
            border-radius: 30px;
            box-shadow: 
                0 25px 50px rgba(101, 67, 33, 0.12),
                0 12px 25px rgba(139, 92, 48, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            padding: 40px 50px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(139, 92, 48, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .massage-promo:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 35px 70px rgba(101, 67, 33, 0.18),
                0 20px 40px rgba(139, 92, 48, 0.12);
        }
        
        .massage-promo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #8b5c30 0%, #d4a574 50%, #8b5c30 100%);
            border-radius: 30px 30px 0 0;
        }
        
        .massage-promo::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }
        
        .summer-badge {
            background: linear-gradient(135deg, #8b5c30, #a0703d);
            color: #fefdfb;
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 6px 20px rgba(139, 92, 48, 0.25);
            position: relative;
            z-index: 2;
        }
        
        .title {
            font-family: 'Crimson Text', serif;
            font-size: 32px;
            font-weight: 600;
            color: #654321;
            margin: 0 0 15px 0;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }
        
        .subtitle {
            color: #8b5c30;
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
            z-index: 2;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(139, 92, 48, 0.06));
            border: 2px solid rgba(212, 165, 116, 0.3);
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
        }
        
        .highlight-box::before {
            content: '🌿';
            position: absolute;
            top: -12px;
            left: 25px;
            background: linear-gradient(135deg, #fefdfb, #f9f6f1);
            padding: 0 12px;
            font-size: 18px;
            border-radius: 15px;
            box-shadow: 0 2px 8px rgba(139, 92, 48, 0.1);
        }
        
        .features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .features li {
            padding: 10px 0;
            color: #5d4e37;
            display: flex;
            align-items: flex-start;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .features li::before {
            content: '◆';
            color: #d4a574;
            font-size: 14px;
            margin-right: 15px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        
        .price-section {
            text-align: center;
            margin-top: 0;
            padding-top: 0;
            border-top: none;
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .right-section {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .right-section::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 10%;
            bottom: 10%;
            width: 2px;
            background: linear-gradient(180deg, transparent, rgba(212, 165, 116, 0.3), transparent);
        }
        
        @media (max-width: 768px) {
            .massage-promo {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 520px;
                padding: 40px 35px;
            }
            
            .right-section::before {
                display: none;
            }
            
            .price-section {
                border-top: 2px solid rgba(212, 165, 116, 0.2);
                padding-top: 30px;
                margin-top: 20px;
            }
        }
        
        .price-container {
            background: linear-gradient(135deg, rgba(139, 92, 48, 0.05), rgba(212, 165, 116, 0.05));
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid rgba(212, 165, 116, 0.2);
        }
        
        .price {
            font-family: 'Crimson Text', serif;
            font-size: 42px;
            font-weight: 600;
            color: #8b5c30;
            margin: 0;
            text-shadow: 0 2px 4px rgba(139, 92, 48, 0.1);
        }
        
        .price-note {
            color: #8b7355;
            font-size: 14px;
            margin-top: 8px;
            font-weight: 400;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #8b5c30 0%, #d4a574 50%, #8b5c30 100%);
            color: #fefdfb;
            text-decoration: none;
            padding: 18px 45px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 17px;
            display: inline-block;
            box-shadow: 
                0 12px 30px rgba(139, 92, 48, 0.25),
                0 4px 15px rgba(139, 92, 48, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 20px 40px rgba(139, 92, 48, 0.3),
                0 8px 25px rgba(139, 92, 48, 0.2);
            text-decoration: none;
            color: #fefdfb;
        }
        
        .wellness-icons {
            position: absolute;
            top: 25px;
            right: 30px;
            display: flex;
            gap: 8px;
            opacity: 0.15;
            font-size: 20px;
        }
        
        .zen-element {
            position: absolute;
            bottom: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            border: 2px solid rgba(212, 165, 116, 0.1);
            border-radius: 50%;
            opacity: 0.3;
        }
        
        .zen-element::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            border: 1px solid rgba(139, 92, 48, 0.2);
            border-radius: 50%;
        }