﻿.commission-process {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}
.commission-process-header {
    text-align: center;
    max-width: 1000px;
    font-size: 2rem;
}
.commission-process-header p {
    font-size: 1.4rem;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.step-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
/* Alternating layout */
.step.align-left .step-content {
    flex-direction: row;
    text-align: left;
}

.step.align-right .step-content {
    flex-direction: row-reverse;
    text-align: right;
}

.step .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers h2 + p */
    padding: 20px 0;
}

    .step .text h2 {
        margin: 0 0 10px 0;
        font-size: 2rem;
        color: #333;
        padding-left: 10%; /* Shift the h2 visually into the center of its own column */
        align-self: flex-start;
    }


    .step .text p {
        font-size: 1.4rem;
        color: #555;
    }

/* Image Styling */
.step img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .step-content {
        flex-direction: column !important;
        text-align: left !important;
        align-items: flex-start;
    }

    .step img {
        align-self: center;
        margin-top: 20px;
    }
}
