.page-header {
            padding: 130px 0 60px 0;
        }
        
        .page-header h1 {
            font-size: 2.2rem;
        }
        
        .service-item, .service-item:nth-child(even) {
            flex-direction: column;
        }
        
        .service-image {
            width: 100%;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
    }
	
	
	
	
	.section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
    }

    .service-item {
        display: flex;
        align-items: center;
        margin-bottom: 100px;
        flex-wrap: wrap;
		flex-direction: row;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle and soft shadow */
        border-radius: 12px; /* optional: gives it a modern rounded edge */
        background: #fff; /* ensure background is set for visibility */
        overflow: hidden; /* ensures content doesn't spill outside */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth interaction */
		padding: 0 4px;
    }
	
	
	.service-item:hover {
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* stronger on hover */
          transform: translateY(-4px); /* slight lift effect */
      }
	

    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-item:last-child {
        margin-bottom: 0;
    }

    .service-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        height: 350px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 1.1);
		margin-top: 98px;	
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
		border-radius: 8px
    }

    .service-content {
        flex: 1;
        min-width: 300px;
        padding: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background-color: rgba(30, 84, 247, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--primary);
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .service-content p {
        color: var(--gray);
        margin-bottom: 25px;
    }

    .service-features {
        margin-bottom: 25px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        background-color: rgba(30, 84, 247, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: var(--primary);
        font-size: 14px;
    }

    .feature-text {
        font-weight: 500;
    }

    .process {
        padding: 80px 0;
        background-color: var(--white);
    }

    .process-steps {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin: 60px 0;
        flex-wrap: wrap;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 38px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        z-index: 1;
    }

    .process-step {
        width: 180px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .step-number {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        margin: 0 auto 20px auto;
    }

    .step-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .step-desc {
        font-size: 0.9rem;
        color: var(--gray);
    }

    .cta {
        padding: 80px 0;
        background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
        color: var(--white);
        text-align: center;
    }

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq {
        padding: 80px 0;
    }

    .accordion {
        margin-top: 50px;
    }

    .accordion-item {
        margin-bottom: 15px;
        background-color: var(--white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .accordion-header {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: rgba(30, 84, 247, 0.05);
    }

    .accordion-header h3 {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .accordion-icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(0deg);
        transition: transform 0.3s;
    }

    .accordion-content {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
    }

    .accordion-item.active .accordion-icon {
        transform: rotate(45deg);
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
        max-height: 500px;
    }

     
	 
	 
	 
	    .btn-outline:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    .page-header {
        background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
        color: var(--white);
        padding: 140px 0 80px 0;
        position: relative;
        overflow: hidden;
    }

    .page-header-content {
        max-width: 800px;
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-header p {
        font-size: 1.2rem;
        margin-bottom: 0;
        opacity: 0.9;
        max-width: 600px;
    }

    .page-header-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('/api/placeholder/800/600') center/cover no-repeat;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.1;
        z-index: 1;
    }

    .services-container {
        padding: 80px 0;
    }