.mobile-title {
    display: block;
}

.desktop-title {
    display: none;
}

.split-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 20;
    margin-top: 20px;
}

.split-image {
    width: 100%;
}

.split-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split-content {
    width: 100%;
}

.split-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
}

.process-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.process-number {
    width: 64px;
    height: 64px;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-bottom-color: var(--color-primary);
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-button:hover {
    color: var(--color-primary);
}

.faq-button svg {
    width: 24px;
    height: 24px;
    color: var(--color-text);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 16px;
}

.faq-content p {
    padding-bottom: 24px;
    color: var(--color-text);
    font-size: 1.05rem;
}

.faq-content.open {
    max-height: 500px;
    opacity: 1;
}

.faq-button svg.rotate-180 {
    transform: rotate(180deg);
}

.faq-cta {
    margin-top: 56px;
}

@media (min-width: 768px) {
    .mobile-title {
        display: none;
    }

    .desktop-title {
        display: block;
        text-align: left;
        margin-bottom: 24px;
    }

    .split-section {
        flex-direction: row;
        gap: 80px;
        margin-top: 0;
    }
    
    .split-section.reverse {
        flex-direction: row-reverse;
    }
    
    .split-image, .split-content {
        width: 50%;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}