/* Responsive styles for features section */
.features-section {
    width: 100%;
}

/* Desktop layout (default) */
.features-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
}

.feature-content {
    flex: 1;
    padding-right: 20px;
}

.feature-image-container {
    flex: 1;
}

/* Mobile layout */
@media screen and (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }
    
    .feature-content {
        order: 1;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .feature-image-container {
        order: 2;
    }
    
    .feature-image {
        width: 100%;
        height: auto;
    }
    
    .feature-bullets {
        padding-left: 20px;
    }
} 