
/* === PROCESS SECTION === */
.process {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    background: var(--white);
    padding: 1.5rem 1.5rem 1.5rem 5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-list li strong {
    color: var(--dark-teal);
    display: block;
    margin-bottom: 0.25rem;
}

/* === FAQ SECTION === */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container details {
    background: var(--light-gray);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-container summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--dark-teal);
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-container summary::-webkit-details-marker {
    display: none; 
}

.faq-container summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-teal);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-container details[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0;
    background-color: var(--dark-teal);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: var(--light-teal);
    color: var(--dark-teal);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.5rem; }
    
    .nav-call-btn .call-text {
        display: none; /* Hides number text on mobile, shows only icon */
    }
    .nav-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .nav-actions {
        gap: 1rem;
    }
}
