        .nosotros {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
            font-family: 'Montserrat', sans-serif;
        }

        .nosotros .nosotros-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .nosotros .nosotros-header h2 {
            font-size: 2.5rem;
            color: #39524F;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .nosotros .nosotros-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #80B8B1;
        }

        .nosotros .nosotros-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        .nosotros .nosotros-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .nosotros .nosotros-texto {
            flex: 1;
            min-width: 300px;
        }

        .nosotros .nosotros-texto h3 {
            font-size: 1.8rem;
            color: #39524F;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .nosotros .nosotros-texto p {
            margin-bottom: 20px;
            line-height: 1.7;
            color: #555;
            font-weight: 400;
        }

        .nosotros .nosotros-imagen {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nosotros .nosotros-imagen img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .nosotros .nosotros-imagen:hover img {
            transform: scale(1.03);
        }

        .nosotros .nosotros-valores {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .nosotros .valor-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .nosotros .valor-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .nosotros .valor-icono {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background-color: #80B8B1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }

        .nosotros .valor-item h4 {
            font-size: 1.3rem;
            color: #39524F;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .nosotros .valor-item p {
            color: #666;
            line-height: 1.6;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .nosotros .nosotros-content {
                flex-direction: column;
            }

            .nosotros .nosotros-imagen {
                order: -1;
            }
        }