.services-main {
    padding-top: 100px;
}

.services-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 5%;
    position: relative;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.services-grid-expanded {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 5%;
}

.service-card-expanded {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.service-card-expanded.reverse {
    flex-direction: row-reverse;
}

.service-expanded-content {
    flex: 1;
    padding: 40px;
}

.service-expanded-image {
    flex: 1;
}

.service-expanded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-expanded-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 30px;
}

.service-card-expanded h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-card-expanded p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
}

.service-process {
    background-color: var(--light-blue);
    padding: 80px 5%;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .service-card-expanded {
        flex-direction: column;
    }
    
    .service-expanded-image {
        height: 300px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-card-expanded h3 {
        font-size: 24px;
    }
}