 .container-space {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #E3E4DE;
      
        }
        
        /* HEADER */
        .section-header {
            text-align: center;
            margin-top: 210px;
        }
        
        .section-header h2 {
            font-size: 36px;
            font-weight: 500;
            letter-spacing: 4px;
            color: #503E7B;
            margin-bottom: 15px;
            text-transform: uppercase;
            margin-top: -270px;
        }
        
        .section-header p {
            color: #0b0808;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* GRID - 3 COLUMNS */
        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        /* CARD */
        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        /* IMAGE */
        .card-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: transform 0.5s ease;
        }
        .card:hover .card-image {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 12px 25px;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        /* CONTENT */
        .card-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        
        .card-title {
            font-size: 24px;
            font-weight: 500;
            color: green;
            margin-bottom: 20px;
            
        }
        
        .card-description {
            color: #666;
            line-height: 1.6;
           margin-bottom: 16px;
            font-size: 15px;
            min-height: 70px;
        }
        
        /* FEATURES */
        .card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
            min-height: 40px;
        }
        
          .feature {
            background: #f0f0f0;
            color: #555;
            padding: 4px 12px;
            border-radius: 26px;
            font-size: 12px;
            font-weight: 500;
        }
        
        /* BUTTON */
        .button {
            background: #222;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 12px;
            text-align: center;
            transition:  0.3s;
            margin-top: auto;
            border: none;
            cursor: pointer;
        }
        
        .button:hover {
            background: #6c0303;
        }

        /* ===== MOBILE FIX FOR YOUR SCREENSHOT ISSUES ===== */
@media (max-width: 768px) {
    /* Fix THE SPACES section */
    .spaces-section .rooms-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .spaces-section .room-card {
        margin-bottom: 25px !important;
    }
    
    /* Fix AMENITIES section */
    .amenities-section .amenities-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .amenities-section .amenity-card {
        margin-bottom: 20px !important;
        padding: 20px !important;
    }
    
    /* Fix SERENE section */
    .serene-section .serene-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .serene-section .serene-feature-card {
        margin-bottom: 20px !important;
    }
    
    /* Fix feature tags */
    .feature {
        display: inline-block !important;
        margin: 3px !important;
        font-size: 12px !important;
    }
    
    /* Fix price displays */
    .room-price {
        font-size: 1.2rem !important;
        font-weight: bold !important;
    }
    
    /* Fix view details buttons */
    .view-details,
    .room-btn {
        margin-top: 10px !important;
    }
}
        