.coliving-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* Sección principal */
.coliving-section {
    padding: 80px 0;
    background-color: #fcf8f3 !important;
}

/* Título principal con fondo decorativo */
.coliving-section .title-container {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.coliving-section .title-bg {
    position: absolute;
    width: 500px;
    height: auto;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
}

.coliving-section .main-title {
    position: relative;
    font-size: 48px;
    font-weight: 200;
    color: #222;
    font-family: 'Playfair Display',Georgia,"Times New Roman",serif;
}

/* Columnas de información */
.coliving-section .info-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 5.5%;
    margin-bottom: 80px;
}

.coliving-section .column {
    flex: 1;
    min-width: 300px;
}

.coliving-section .column-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Playfair Display',Georgia,"Times New Roman",serif;
    color: #222;
}

.coliving-section .column-text {
    color: #666;
   
    line-height: 1.9;
}

/* Sección de pasos */
.coliving-section .steps-section {
    text-align: center;
}



.coliving-section .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.coliving-section .step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 0 15px;
    position: relative;
}
.coliving-section .step::before {
    position: absolute;
    content: '';
    top: 32px;
    width: 100%;
    height: 2px;
    /* background-color: #ddd; */
    border-top: 1px dashed #997B68;
}

.coliving-section .step.last::before {
    position: absolute;
    content: '';
    top: 32px;
    width: 50%;
    height: 2px;
    /* background-color: #ddd; */
    border-top: 1px dashed #997B68;
    display: none;
}


.coliving-section .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #997B68;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    margin: 0 auto 20px;
    color: #555;
    position: relative;
    background-color: white;
    z-index: 10;
}

.coliving-section .steps-title {
    
    margin-bottom: 40px;
    
}

.coliving-section .step-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Playfair Display',Georgia,"Times New Roman",serif;
}

.coliving-section .step-description {
    font-size: 14px;
    color: #666;
}

/* Línea conectora entre pasos */
.coliving-section .step-connector {
    position: absolute;
    top: 32px;
    left: 106%;
    width: 370%;
    height: 2px;
    background-color: #ddd;
    z-index: 3;
    border-top: 1px dashed #997B68;
}

/* Responsive */
@media (max-width: 768px) {
    .coliving-section .info-columns {
        flex-direction: column;
        gap: 24px;
    }
    
    .coliving-section .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .coliving-section .step-connector {
        display: none;
    }
    
    .coliving-section .main-title {
        font-size: 36px;
    }
    
    .coliving-section .steps-title {
        font-size: 28px;
    }
    .coliving-section .step::before {
        display: none;
    }
}