* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F6BB5C;
}

/* Asegurarnos que todas las secciones respeten el ancho */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Asegurarnos que las imágenes no causen desbordamiento */
img {
    max-width: 100%;
    height: auto;
}

/* Contenedores principales */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Prevenir desbordamiento en elementos flexibles */
.mission-container,
.services-container,
.works-container,
.stats-container {
    width: 100%;
    max-width: 100%;
}
