/* Process Slideshow Styling */
.process-guide {
    padding-top: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}
.process-slideshow {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(107, 78, 47, 0.1);
    height: 450px;
}

.process-slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.process-slide {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.process-step {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 60px;
}

.process-step-number {
    background-color: #6b4e2f;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.process-step-content {
    max-width: 100%;
    width: 100%;
}

.process-step-content h4 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.8rem;
    color: #6b4e2f;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
}

.process-step-content p {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 100%;
}

.process-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.process-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(107, 78, 47, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.process-indicator.active {
    background-color: #6b4e2f;
}

.process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(107, 78, 47, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.process-arrow:hover {
    background-color: rgba(107, 78, 47, 1);
    transform: translateY(-50%) scale(1.1);
}

.process-arrow-left {
    left: 20px;
}

.process-arrow-right {
    right: 20px;
}

/* Media Queries for Process Slideshow */
@media (max-width: 1024px) {
    .process-guide {
        max-width: 1000px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .process-slideshow {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .process-guide {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .process-slideshow {
        height: 380px;
    }
    
    .process-step {
        padding: 30px 40px;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .process-step-content h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .process-step-content p {
        font-size: 1rem;
    }
    
    .process-arrow {
        width: 40px;
        height: 40px;
    }
    
    .process-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .process-guide {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .process-slideshow {
        height: 320px;
    }
    
    .process-step {
        padding: 25px 30px;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .process-step-content h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .process-step-content p {
        font-size: 0.95rem;
    }
    
    .process-indicator {
        width: 10px;
        height: 10px;
    }
    
    .process-arrow {
        width: 36px;
        height: 36px;
    }
    
    .process-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .process-arrow-left {
        left: 10px;
    }
    
    .process-arrow-right {
        right: 10px;
    }
}