
/* home-feature */


.feature-container {
    display: flex;
    min-height: 100vh;
    gap: 2rem;
    padding: 2rem;
}

.column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.text-column {
    flex: 1;
    color: white;
}

.text-column h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.image-column {
    flex: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.business-people {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(to top, #f8f9fa 0%, white 100%);
    border-radius: 20px;
}


/* Adjust these values to change column widths */
@media (min-width: 768px) {
    .text-column {
        flex: 1; /* Change to adjust text column width */
    }
    .image-column {
        flex: 1; /* Change to adjust image column width */
    }
}

/* Stack columns on smaller screens - adjust breakpoint as needed */
@media (max-width: 767px) {
    .container {
        flex-direction: column;
    }
    
    .text-column h1 {
        text-align: center;
    }
}
