/* Main section styling */
#process {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.process-container {
    max-width: var(--width);
    margin: 0 auto;
}

.process-container h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Underline below heading */
.heading-underline {
    margin: 10px auto 60px;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

/* Steps layout and vertical line */
.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.process-line {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--accent-color);
    z-index: 1;
}

/* Step structure */
.process-step {
    position: relative;
    padding: 30px 0 30px 60px;
    margin-bottom: 10px;
}

/* Circle + icon */
.process-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--accent-color);
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Content box */
.process-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

/* Triangle pointer */
.process-pointer {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

/* Text styling */
.process-step h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--primary-color);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .process-steps {
        padding-left: 30px;
    }

    .process-step {
        padding-left: 40px;
    }

    .process-icon {
        left: 5px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        border: 2px solid white;
        box-shadow: 0 0 0 1px var(--accent-color);
    }
}
