/* --- extracted style block 1 from Pages/Service_apartment/service_apartment_detail.php --- */
    /* Your existing CSS styles remain exactly the same */
    :root {
      --primary: #c62828;
      --primary-dark: #8e0000;
      --primary-light: #ff5f52;
      --secondary: #1565c0;
      --success: #2e7d32;
      --muted: #f1f4f6;
      --card-bg: #eef0f3;
      --dark-text: #333;
      --light-text: #666;
      --white: #fff;
      --shadow: 0 4px 12px rgba(0,0,0,0.08);
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
      background:#fff;
      color: var(--dark-text);
      padding-bottom: 100px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    
    a{
        all: unset;
        cursor: pointer;
    }
    
    /* All your existing CSS styles... */
    /* (Keeping them the same as in your original code) */
    
    /* Additional styles for dynamic content */
    .room-card {
        background: var(--muted);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .room-header {
        display: flex;
        justify-content: between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .room-type {
        font-weight: 700;
        color: var(--primary);
        font-size: 1.2rem;
    }
    
    .room-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .room-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .no-image {
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 3rem;
    }
    
    .error-container {
        text-align: center;
        padding: 60px 20px;
        color: var(--light-text);
    }
    
    .error-container i {
        font-size: 4rem;
        margin-bottom: 20px;
        color: #ddd;
    }
  
