
    .hoist-seo-banner {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #2c3e5042;
    }
    
    .hoist-seo-banner img {
        width: 100%;
        height: auto;
        display: block;
        opacity: 0.9;
    }
    
    .hoist-seo-banner-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 62, 80, 0.322);
        display: flex;
        align-items: center;
        padding: 20px;
    }
    
    .hoist-seo-banner-text {
        max-width: 900px;
        margin: 0 auto;
        color: white;
        text-align: center;
        padding: 20px;
    }
    
    .hoist-seo-h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .hoist-seo-intro {
        font-size: 1.3rem;
        line-height: 1.7;
        margin-bottom: 25px;
        opacity: 0.95;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hoist-seo-highlight {
        color: #e74c3c;
        font-weight: 600;
    }
    
    .hoist-seo-section {
        padding: 50px 0;
        background: #f8f9fa;
    }
    
    .hoist-seo-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hoist-seo-h2 {
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 4px solid #e74c3c;
        text-align: center;
    }
    
    .hoist-seo-content {
        line-height: 1.8;
        color: #333;
        font-size: 1.1rem;
        text-align: justify;
    }
    
    .hoist-seo-locations {
        background: white;
        padding: 50px 0;
    }
    
    .hoist-seo-location-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    
    .hoist-seo-location-item {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 25px;
        border-radius: 10px;
        border-left: 5px solid #3498db;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }
    
    .hoist-seo-location-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .hoist-seo-location-item h3 {
        color: #2c3e50;
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
    }
    
    .hoist-seo-location-item ul {
        padding-left: 20px;
        margin: 0;
    }
    
    .hoist-seo-location-item li {
        margin-bottom: 8px;
        color: #444;
        line-height: 1.5;
    }
    
    .hoist-seo-location-item strong {
        color: #2c3e50;
    }
    
    .hoist-seo-cta {
        background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
    }
    
    .hoist-seo-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: white;
    }
    
    .hoist-seo-cta p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hoist-seo-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    
    .hoist-seo-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #e74c3c;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid #e74c3c;
    }
    
    .hoist-seo-cta-btn:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .hoist-seo-cta-btn.secondary {
        background: #3498db;
        border-color: #3498db;
    }
    
    .hoist-seo-cta-btn.secondary:hover {
        background: transparent;
    }
    
    .hoist-seo-address {
        background: rgba(255,255,255,0.1);
        padding: 20px;
        border-radius: 10px;
        margin-top: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hoist-seo-faq {
        background: #f8f9fa;
        padding: 60px 0;
    }
    
    .hoist-seo-faq-item {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hoist-seo-faq-question {
        padding: 20px;
        background: white;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .hoist-seo-faq-answer {
        padding: 20px;
        display: none;
        background: white;
        line-height: 1.6;
        color: #333;
        border-top: 1px solid #eee;
    }
    
    .hoist-seo-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .hoist-seo-benefit-item {
        background: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border-top: 4px solid #3498db;
    }
    
    .hoist-seo-benefit-item h3 {
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .hoist-seo-breadcrumb {
        background: #f8f9fa;
        padding: 10px 0;
        font-size: 0.9rem;
        color: #666;
        border-bottom: 1px solid #eee;
    }
    
    .hoist-seo-breadcrumb-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hoist-seo-breadcrumb a {
        color: #3498db;
        text-decoration: none;
    }
    
    .hoist-seo-breadcrumb a:hover {
        text-decoration: underline;
    }

   @media (min-width: 1200px) {
    .hoist-seo-breadcrumb {
        display: none;
    }
   }


    @media (max-width: 768px) {
        .hoist-seo-banner-text {
         display: none;
        }

        .hoist-seo-h1 {
            display: none;
        }

        .hoist-seo-intro {
        display: none;
        }

        .hoist-seo-banner-conten {
            display: none;
        }

     

        .hoist-seo-h1 {
            font-size: 2rem;
        }
        
        .hoist-seo-h2 {
            font-size: 1.8rem;
        }
        
        .hoist-seo-intro {
            font-size: 1.1rem;
        }
        
        .hoist-seo-location-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .hoist-seo-cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .hoist-seo-cta-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .hoist-seo-banner-content {
            padding: 15px;
        }
        
        .hoist-seo-benefits {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .hoist-seo-banner-text {
            display: block;
        }

        .hoist-seo-banner-content {
           display: none;
        }

        .hoist-seo-h1 {
            font-size: 1.7rem;
        }
        
        .hoist-seo-h2 {
            font-size: 1.6rem;
        }
        
        .hoist-seo-cta h2 {
            font-size: 1.8rem;
        }
        
        .hoist-seo-cta-btn {
            padding: 12px 25px;
            font-size: 1rem;
        }
    }
    
    .main.craneMain {
        position: relative;
        z-index: 1;
    }
    
    .whatsapp-btn {
        z-index: 9999;
    }
