/* Start custom CSS for html, class: .elementor-element-cbfd362 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #070707;
            background-color: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
         
        section {
            padding: 60px 0;
        }
        
         h1, h2, h3, h4 {
            color: rgb(0, 0, 0);
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #e6951a;
            transform: translateY(-3px);
        }
        
        /* Header Section */
        .hero {
          
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            color: var(--white);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Why Choose Us Section */
        .why-us {
            background-color: var(--white);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-item {
            background: var(--light);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .feature-item h3 {
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light);
        }
        
        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-img {
            height: 250px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            margin-bottom: 15px;
        }
        
        /* Process Section */
        .process {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .process h2, .process h3 {
            color: var(--white);
        }
        
        .process p {
            color: rgba(0, 0, 0, 0.8);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--white);
            border-radius: 50%;
            line-height: 50px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        /* Methods Section */
        .methods {
            background-color: var(--white);
        }
        
        .method-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .method-card {
            background: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .method-card:hover {
            transform: translateY(-10px);
        }
        
        .method-img {
            height: 200px;
            overflow: hidden;
        }
        
        .method-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .method-content {
            padding: 20px;
        }
        
        /* Benefits Section */
        .benefits {
            background-color: var(--light);
        }
        
        .benefit-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-item {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--secondary);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--white);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .question {
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .service-cards, .method-cards {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */