/* How We Work Page Styles */
.how-we-work-page {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.how-we-work-header {
    margin-bottom: 80px;
}

.how-we-work-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.how-we-work-subtitle {
    font-size: 1.25rem;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}

.step-item {
    margin-bottom: 40px;
    position: relative;
}

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

.step-card {
    background: rgba(240, 247, 255, 0.75);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(92, 107, 192, 0.2) 0%, rgba(92, 107, 192, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(92, 107, 192, 0.15);
    border: 2px solid rgba(92, 107, 192, 0.3);
}

.step-icon-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.25rem;
}

.step-description {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.step-outcome {
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.7;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    font-weight: 400;
}

.step-outcome strong {
    color: #2C3E50;
    font-weight: 600;
}

.how-we-work-slogan {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid rgba(44, 62, 80, 0.1);
}

.slogan-line {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0.5rem 0;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .how-we-work-title {
        font-size: 2.75rem;
    }
    
    .how-we-work-subtitle {
        font-size: 1.15rem;
    }
    
    .step-card {
        padding: 35px 30px;
        gap: 30px;
    }
    
    .step-icon-circle {
        width: 130px;
        height: 130px;
    }
    
    .step-icon-image {
        width: 90px;
        height: 90px;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .slogan-line {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .how-we-work-page {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .how-we-work-header {
        margin-bottom: 50px;
    }
    
    .how-we-work-title {
        font-size: 2.25rem;
    }
    
    .how-we-work-subtitle {
        font-size: 1.05rem;
    }
    
    .steps-container {
        margin-bottom: 60px;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }
    
    .step-icon-wrapper {
        width: 100%;
    }
    
    .step-icon-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .step-icon-image {
        width: 80px;
        height: 80px;
    }
    
    .step-title {
        font-size: 1.75rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-outcome {
        font-size: 1rem;
    }
    
    .how-we-work-slogan {
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .slogan-line {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .how-we-work-title {
        font-size: 1.75rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-icon-image {
        width: 70px;
        height: 70px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .step-outcome {
        font-size: 0.95rem;
    }
    
    .slogan-line {
        font-size: 1.5rem;
    }
}
