/* Our Process Page Styling */
.text-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--darkpurple) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Process Phase Styling */
.process-phase {
    margin-bottom: 4rem;
    position: relative;
    padding-left: 2.5rem;
}

.process-phase::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.process-phase h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.process-phase h2::before {
    content: "";
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--accent);
}

.process-phase > p {
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.text-box {
    background: var(--gray);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent);
}

.text-box h3 {
    color: var(--accent);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
    position: relative;
    padding-left: 1.5rem;
}

.text-box h3:first-child {
    margin-top: 0;
}

.text-box h3::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.text-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlight-box {
        padding: 2rem 1.5rem;
    }
    
    .highlight-box h1 {
        font-size: 2rem;
    }
    
    .process-phase {
        padding-left: 2rem;
    }
    
    .process-phase h2::before {
        left: -2rem;
        width: 20px;
        height: 20px;
    }
    
    .text-box {
        padding: 1.5rem;
    }
}